From af511613b87194df2f106392599f054fd33c74ae Mon Sep 17 00:00:00 2001 From: Paul Ganssle Date: Sun, 26 Nov 2023 22:36:08 -0500 Subject: [PATCH] Fix infobox heights In a recent change we fixed the infobox height at a specific proportion of the viewport, but I realized that this makes the profile selector super long for no reason. This changes it over to using max-height instead of fixed height. --- _sass/_cim.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_sass/_cim.scss b/_sass/_cim.scss index d128c8e..8de9a18 100644 --- a/_sass/_cim.scss +++ b/_sass/_cim.scss @@ -442,8 +442,8 @@ body.colorscheme-light div.flag { width: 95vw; // Fallback width: 95dvw; } - height: 90vh; - height: 90dvh; + max-height: 90vh; + max-height: 90dvh; padding: 10px; overflow-y: auto; border: 1px solid #cccccc;