Refactor Calendar component to adjust default meeting times and improve event item styling

This commit updates the Calendar component by changing the default start time for meetings to 9:00 AM and the end time to 5:01 PM, ensuring better alignment with typical work hours. Additionally, the styling of calendar event items is refined by removing fixed width and height properties, allowing for more flexible rendering. These changes enhance the usability and visual presentation of the calendar feature, contributing to an improved user experience.
This commit is contained in:
2026-01-26 22:15:03 -05:00
parent d0ce71397b
commit 46836fde2e
3 changed files with 19 additions and 9 deletions
@@ -50,7 +50,7 @@
</MonthTemplate>
<WeekTemplate>
<MudTooltip Text="@GetEventTooltip(context)">
<div class="calendar-event-item" style="width: 100%; height: 100%;">
<div class="calendar-event-item">
@context.Text
</div>
</MudTooltip>