Skip to content

Commit

Permalink
fix: padding bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrobertbrooks committed Jun 27, 2024
1 parent 0e7d763 commit 58e2f8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/calendar/views/ListGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const ListGrid = ({ data }: Props) => {
const today = getToday();

return (
<div className="grid gap-3">
<div className="grid gap-3 pb-3">
{data.map((date) => {
const isToday = isSameDate(date, today);

Expand Down
4 changes: 2 additions & 2 deletions src/pages/calendar/views/MonthGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const MonthGrid = ({ data, month }: Props) => {
const today = getToday();

return (
<>
<div className="pb-3">
<div className="grid grid-cols-7 gap-2">
{getEnumKeys(DayOfWeek).map((dayOfWeek) => (
<div key={dayOfWeek} className="text-right pr-2">
Expand Down Expand Up @@ -55,6 +55,6 @@ export const MonthGrid = ({ data, month }: Props) => {
})}
</div>
))}
</>
</div>
);
};

0 comments on commit 58e2f8a

Please sign in to comment.