From 95d2031e4fda79effd3fdce1b433f1cdccd7388a Mon Sep 17 00:00:00 2001 From: Lucas 'Paperboy' Rose-Winters Date: Tue, 21 Oct 2025 22:03:25 +1100 Subject: [PATCH] fix: increase calendar day box height and padding on mobile - Added min-height: 3em to rpg-calendar-day on mobile - Increased vertical padding to 0.75em (from 0.25em default) - Added line-height: 1.2 for tighter text - Prevents date text from being pushed too high and cutting into box above - Flexbox centering now has enough space to properly center content --- style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/style.css b/style.css index f64b342..81d3304 100644 --- a/style.css +++ b/style.css @@ -3699,6 +3699,9 @@ body:has(.rpg-panel.rpg-position-left) #sheld { .rpg-calendar-day { font-size: clamp(11px, 2.9vw, 14px) !important; + min-height: 3em !important; /* Ensure enough height for content to center */ + padding: 0.75em 0.5em !important; /* More vertical padding on mobile */ + line-height: 1.2 !important; /* Tighter line height */ } .rpg-calendar-year {