From c612f567b4943325621383ad229d1b9abfa767d1 Mon Sep 17 00:00:00 2001 From: Connor Johnstone Date: Tue, 23 Sep 2025 15:30:59 -0400 Subject: [PATCH] Fix calendar layout positioning and overflow handling MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add position relative and height 100% to calendar component for proper layout - Add overflow hidden to week events overlay to prevent content spillover 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- frontend/styles.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/styles.css b/frontend/styles.css index 3f026aa..7dac0db 100644 --- a/frontend/styles.css +++ b/frontend/styles.css @@ -1168,6 +1168,8 @@ body { flex: 1; display: flex; flex-direction: column; + position: relative; + height: 100%; } .calendar-header { @@ -1509,6 +1511,7 @@ body { right: 0; bottom: 0; pointer-events: none; /* Container doesn't capture, but children (events) do */ + overflow: hidden; } /* Week Events */