diff options
| author | Xe Iaso <me@xeiaso.net> | 2024-05-24 18:21:18 -0400 |
|---|---|---|
| committer | Xe Iaso <me@xeiaso.net> | 2024-05-24 18:22:13 -0400 |
| commit | 3cf180091b004328d105196a045f930d15adec0b (patch) | |
| tree | 50a8492adcd4195cd5d6d0ef11a733811f912428 /lume/src/_components | |
| parent | c5a14475e2d4af0fcc1cd1b13de689ce0d223a15 (diff) | |
| download | xesite-3cf180091b004328d105196a045f930d15adec0b.tar.xz xesite-3cf180091b004328d105196a045f930d15adec0b.zip | |
events: fix dark mode
Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to 'lume/src/_components')
| -rw-r--r-- | lume/src/_components/EventCard.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lume/src/_components/EventCard.jsx b/lume/src/_components/EventCard.jsx index 62dbcfe..aa34b04 100644 --- a/lume/src/_components/EventCard.jsx +++ b/lume/src/_components/EventCard.jsx @@ -25,7 +25,7 @@ export default ({ name, url, start_date, end_date, location, description }) => { <p> {location} - {startDate} {start_date.seconds !== end_date.seconds ? `thru ${endDate})}` : ""} </p> - <p className="prose"> + <p className="prose dark:prose-invert"> {description} </p> </div> |
