From 0608bc6280e1cf07f52ca9d41cc8643c1c2dd3a8 Mon Sep 17 00:00:00 2001 From: Lucas 'Paperboy' Rose-Winters Date: Fri, 17 Oct 2025 16:38:42 +1100 Subject: [PATCH] fix(ui): make info box compact to give stats section more space Changed .rpg-info-section from flex: 1 to flex: 0 0 auto so it only takes the vertical space needed by its content (calendar/weather/ location widgets) rather than expanding equally with other sections. Previously, all .rpg-section elements had flex: 1, causing them to equally share vertical space. This forced the info box to expand beyond its content needs, creating excessive bottom padding. With this change: - Info box is now compact (no wasted space) - Stats section expands to fill more vertical space - Overall layout is more balanced with stats getting priority --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index 410faba..5dbae3a 100644 --- a/style.css +++ b/style.css @@ -978,7 +978,7 @@ body:has(.rpg-panel.rpg-position-left) #sheld { border-radius: 0.75em; padding: 0.375em; margin-bottom: 0; - flex: 1; + flex: 0 0 auto; min-height: 0; display: flex; flex-direction: column;