creating other things

This commit is contained in:
2024-09-13 21:49:20 -06:00
parent 4803adf604
commit 0b56e1d604
6 changed files with 60 additions and 18 deletions

View File

@@ -62,7 +62,7 @@ function CalendarWeek({
monthNumber: number;
}) {
return (
<div className="grid grid-cols-7 m-3">
<div className="grid grid-cols-7 m-1">
{week.map((day, dayIndex) => (
<Day key={dayIndex} day={day} month={monthNumber} />
))}