got the middle scrolling correct

This commit is contained in:
2024-08-27 20:52:41 -06:00
parent 72f391dcf9
commit 6d760dbe6c
6 changed files with 35 additions and 11 deletions

View File

@@ -19,10 +19,10 @@ export default function CourseCalendar() {
const months = getMonthsBetweenDates(startDateTime, endDateTime);
return (
<>
<div className="overflow-y-scroll h-full border bg-slate-950">
{months.map((month) => (
<CalendarMonth key={month.month + "" + month.year} month={month} />
))}
</>
</div>
);
}