Fix calendar layout positioning and overflow handling

- 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 <noreply@anthropic.com>
This commit is contained in:
Connor Johnstone
2025-09-23 15:30:59 -04:00
parent b5b53bb23a
commit c612f567b4

View File

@@ -1168,6 +1168,8 @@ body {
flex: 1; flex: 1;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
position: relative;
height: 100%;
} }
.calendar-header { .calendar-header {
@@ -1509,6 +1511,7 @@ body {
right: 0; right: 0;
bottom: 0; bottom: 0;
pointer-events: none; /* Container doesn't capture, but children (events) do */ pointer-events: none; /* Container doesn't capture, but children (events) do */
overflow: hidden;
} }
/* Week Events */ /* Week Events */