From ca47274bb153d9c47a716f0bb07be165056c7370 Mon Sep 17 00:00:00 2001 From: Bryan Ramaputra Date: Wed, 23 Feb 2022 19:10:01 -0800 Subject: [PATCH] Fix Issue #25 --- layouts/default.vue | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/layouts/default.vue b/layouts/default.vue index 1f95a4c..b10f38e 100644 --- a/layouts/default.vue +++ b/layouts/default.vue @@ -124,13 +124,16 @@ @@ -188,7 +204,8 @@ a { } .brello-flex-container { - height: 100%; + height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */ + height: calc(var(--vh, 1vh) * 100); min-height: 300px; display: flex; flex-direction: column;