From 225a553017369b9c07ccfbc7fb79afc72c6edf8c Mon Sep 17 00:00:00 2001 From: Quad Date: Thu, 23 Jul 2020 09:58:44 +0200 Subject: [PATCH] Phones have a tendency to be really fucking tall these days --- style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index 92e3646..4e6677d 100755 --- a/style.css +++ b/style.css @@ -73,17 +73,18 @@ a:hover { overflow-y: auto; } +/* Less top padding and more max height for mobile displays */ @media only screen and (max-device-width: 600px), only screen and (max-device-height: 800px) { #content { margin-top: 2vh; } #main-container { - max-height: 70vh; + max-height: 80vh; } #page { - max-height: calc(50vh - 40px); + max-height: calc(60vh - 40px); } }