aboutsummaryrefslogtreecommitdiff
path: root/lume/src/_components
diff options
context:
space:
mode:
authorXe Iaso <me@xeiaso.net>2024-05-24 18:21:18 -0400
committerXe Iaso <me@xeiaso.net>2024-05-24 18:22:13 -0400
commit3cf180091b004328d105196a045f930d15adec0b (patch)
tree50a8492adcd4195cd5d6d0ef11a733811f912428 /lume/src/_components
parentc5a14475e2d4af0fcc1cd1b13de689ce0d223a15 (diff)
downloadxesite-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.jsx2
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>