From da7ee0c5d640083fcce8af38730c587c4fb15395 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Fri, 19 Mar 2021 19:18:21 +0200 Subject: Fixed height of pages that were the whole window height but were also below the navbar --- src/styles.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/styles.css') diff --git a/src/styles.css b/src/styles.css index 64aa79f..0f60fd0 100644 --- a/src/styles.css +++ b/src/styles.css @@ -11,6 +11,7 @@ --success: forestgreen; --failure: indianred; --faded-color: #696969; + --navbar-height: 2.6em; } html, @@ -287,6 +288,10 @@ input[type=file]::file-selector-button { box-sizing: border-box; } +.under-navbar { + height: calc(100% - var(--navbar-height)) !important; +} + /* Inputs, the type found in login and register */ .input-field { -- cgit v1.2.3