Skip to content

Commit

Permalink
fix(yearView): add overflow auto
Browse files Browse the repository at this point in the history
  • Loading branch information
dninomiya committed Sep 8, 2024
1 parent 46f95ce commit 73c30dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/ui/full-calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ const CalendarYearView = () => {
if (view !== 'year') return null;

return (
<div className="grid grid-cols-4 gap-10">
<div className="grid grid-cols-4 gap-10 overflow-auto h-full">
{months.map((days, i) => (
<div key={days[0].toString()}>
<span className="text-xl">{i + 1}</span>
Expand Down

0 comments on commit 73c30dd

Please sign in to comment.