Skip to content

Commit 5f60946

Browse files
committed
fix: 내 시간표 카드 시간-제목 간격 확보 (슬롯 높이 30→34px, 제목 여백 증가)
1 parent ffde6b8 commit 5f60946

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/pyconkr-2026/src/features/schedule/my_timetable_grid.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const AFTERNOON_START_HOUR = 13;
1919
const AFTERNOON_START_MINUTE = 30;
2020
const SLOT_MINUTES = 10;
2121
const SLOT_MS = SLOT_MINUTES * 60_000;
22-
const ROW_HEIGHT = 30;
22+
const ROW_HEIGHT = 34;
2323

2424
type FixedProgram = {
2525
start: string;
@@ -119,7 +119,7 @@ const SessionCard: FC<{ placement: TimetablePlacement; color: string }> = ({ pla
119119
lineHeight: compact ? 1 : 1.25,
120120
textOverflow: "ellipsis",
121121
whiteSpace: compact ? "nowrap" : undefined,
122-
my: compact ? 0.2 : 0.35,
122+
my: compact ? 0.45 : 0.5,
123123
}}
124124
children={placement.title}
125125
/>

0 commit comments

Comments
 (0)