From 0ba1b8b30a808cb697b32036e2e684f30d8f7131 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 01:30:31 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/routes/calendar.index.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/routes/calendar.index.tsx b/src/routes/calendar.index.tsx index 599363a..6d36d13 100644 --- a/src/routes/calendar.index.tsx +++ b/src/routes/calendar.index.tsx @@ -698,14 +698,19 @@ function MonthGrid({ const today = new Date(); return (
-
+
{dayLabels.map((d) => (
{d}
))}
-
+
{days.map((d) => { const key = format(d, "yyyy-MM-dd"); const dayEvts = eventsByDay.get(key) ?? []; @@ -717,8 +722,9 @@ function MonthGrid({ key={key} onClick={() => onSelectDay(d)} onDoubleClick={() => onCreateOnDay(d)} + style={{ minHeight: 100 }} className={cn( - "min-h-[100px] border-b border-r p-1.5 cursor-pointer transition-colors", + "border-b border-r p-1.5 cursor-pointer transition-colors", "hover:bg-accent/40", !inMonth && "bg-muted/30 text-muted-foreground", isSel && "ring-1 ring-primary ring-inset",