Fix recurring event positioning by removing CSS positioning conflict

- Remove conflicting `position: relative` CSS rule for .week-event
- This was causing `top: XXXpx` values to be applied as relative offsets
  instead of absolute positioning from container top
- Recurring events now position correctly at their calculated times
- Both regular and recurring events display at proper grid positions

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Connor Johnstone
2025-08-29 14:16:14 -04:00
parent 53ea5e3fc1
commit 9f2f58e23e
2 changed files with 2 additions and 3 deletions

View File

@@ -759,9 +759,7 @@ body {
}
/* Event resize zones and handles */
.week-event {
position: relative;
}
/* Remove position: relative to allow absolute positioning for correct event placement */
.week-event .event-content {
padding: 2px;