From 88e91175e827572b7118acabe242e1fcbe876bb0 Mon Sep 17 00:00:00 2001 From: Zak Timson Date: Tue, 1 Jan 2019 21:04:47 -0500 Subject: [PATCH] Fixed desktop-height class --- src/styles.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/styles.scss b/src/styles.scss index daadd93..2bb1013 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -48,7 +48,7 @@ html, body { cursor: pointer; } -.desktop-height{ +.desktop-height { height: calc(100vh - 64px); } @@ -147,3 +147,9 @@ html, body { .text-muted { color: #7f7f7f !important; } + +@media (max-width: 599px) { + .desktop-height { + height: calc(100vh - 56px); + } +}