From 9ad519926ecce84be66142aad909d15dd7a8a38b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferit=20Yi=C4=9Fit=20BALABAN?= Date: Thu, 21 Jul 2022 21:16:59 +0300 Subject: [PATCH] Fix toggleable nav height when vh < 850px --- resources/css/main.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/css/main.scss b/resources/css/main.scss index a09a7ff..0b5ba15 100644 --- a/resources/css/main.scss +++ b/resources/css/main.scss @@ -110,7 +110,7 @@ html, body { } @include mixins.header_overflow2 { - height: 95vh; + height: calc(100vh - 45px); } }