From 4e5215b87b38f0b1bf7ab897f4e0f60b0019ee2f Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Sat, 22 Oct 2022 11:37:21 -0700 Subject: [PATCH] Cap content-vue size to 100vh --- src/App.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/App.vue b/src/App.vue index cd35df01..5777b0ee 100644 --- a/src/App.vue +++ b/src/App.vue @@ -158,6 +158,10 @@ body { width: calc(100% - var(--body-container-margin)*1); // was *2 } +#content-vue { + max-height: 100vh; +} + // Hide horizontal scrollbar on mobile // For the padding removal above #app-content-vue {