Skip to content

Commit

Permalink
fix: enable scroll-y (#1018)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 authored Nov 4, 2024
1 parent 8e62b36 commit 5626046
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/antalmanac/src/components/Calendar/CalendarRoot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export default function ScheduleCalendar(_props?: ScheduleCalendarProps) {
}, []);

return (
<Box id="calendar-root" borderRadius={1} flexGrow={1} height={0} display="flex" flexDirection="column">
<Box id="calendar-root" borderRadius={1} flexGrow={1} height={'0px'} display="flex" flexDirection="column">
<CalendarToolbar
currentScheduleIndex={currentScheduleIndex}
toggleDisplayFinalsSchedule={toggleDisplayFinalsSchedule}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function RightPane() {
}, [handleKeydown]);

return (
<Box height={0} flexGrow={1} marginX={0.5}>
<Box height={'0px'} flexGrow={1} marginX={0.5}>
<CoursePaneButtonRow
showSearch={!searchIsDisplayed}
onDismissSearchResults={displaySearch}
Expand Down

0 comments on commit 5626046

Please sign in to comment.