diff --git a/src/components/calendar/cells/DayColumn.tsx b/src/components/calendar/cells/DayColumn.tsx
index 91103213..d6245e52 100644
--- a/src/components/calendar/cells/DayColumn.tsx
+++ b/src/components/calendar/cells/DayColumn.tsx
@@ -205,22 +205,6 @@ export function DayColumn({
)}
- {showMeals &&
- bucket.meals.map((meal) => (
-
- ))}
-
{showAllDay &&
bucket.allDayEvents.map((event) => (
))}
+ {/* Skylight-style: events lead; the day's meals/chores/tasks form a
+ delineated planning group below, separated by a thin divider, with
+ meals pinned to the very bottom of the cell. */}
+ {(showChores || showTasks || showMeals) && (showAllDay || showTimed) && (
+
+ )}
+
{showChores &&
bucket.chores.map((chore) => (
))}
+ {showMeals &&
+ bucket.meals.map((meal) => (
+
+ ))}
+
{profile.showEmptyState && isEmpty && (
Nothing planned
diff --git a/src/components/calendar/cells/OverlayItemsCell.tsx b/src/components/calendar/cells/OverlayItemsCell.tsx
index 6ddfa1c6..9a252dc6 100644
--- a/src/components/calendar/cells/OverlayItemsCell.tsx
+++ b/src/components/calendar/cells/OverlayItemsCell.tsx
@@ -76,21 +76,6 @@ export function OverlayItemsCell({
return (
- {meals.map((meal) => (
- onItemClick({ kind: 'meal', id: meal.id }) : undefined}
- />
- ))}
{chores.map((chore) => (
onItemClick({ kind: 'task', id: task.id }) : undefined}
/>
))}
+ {/* Meals pinned to the bottom (Skylight-style), consistent with DayColumn. */}
+ {meals.map((meal) => (
+ onItemClick({ kind: 'meal', id: meal.id }) : undefined}
+ />
+ ))}
);
}