make some calendar stylings

This commit is contained in:
elisejakob
2024-05-12 21:58:07 +02:00
parent b7eb5d2592
commit 49b153e48d
3 changed files with 57 additions and 10 deletions

View File

@ -51,7 +51,7 @@ const EventCalendar = ({ events }: { events: EventFragment[] }) => {
const eventsByDate = organizeEventsByDate(futureSingularEvents);
return (
<div className={styles.eventList}>
<div className={styles.eventCalendar}>
{Object.keys(eventsByDate).map((yearMonth) => (
<div key={yearMonth} className={styles.calendarYearMonth}>
<h2>{formatYearMonth(yearMonth)}</h2>