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",