diff --git a/frontend/src/components/blocks/Listing/ListingTemplate.jsx b/frontend/src/components/blocks/Listing/ListingTemplate.jsx index bdb4d5a..e1493eb 100644 --- a/frontend/src/components/blocks/Listing/ListingTemplate.jsx +++ b/frontend/src/components/blocks/Listing/ListingTemplate.jsx @@ -74,11 +74,6 @@ const Card = ({ item, showDescription = true, hideDates = false }) => { )} - -

- {item.title} -

-
{!hideDates && (
{item['@type'] === 'Event' && start && end && ( @@ -97,6 +92,11 @@ const Card = ({ item, showDescription = true, hideDates = false }) => { )}
)} + +

+ {item.title} +

+
{!!showDescription && (

{item.description}

)} diff --git a/frontend/theme/extras/blocks/listing.less b/frontend/theme/extras/blocks/listing.less index 3c628e9..f252209 100644 --- a/frontend/theme/extras/blocks/listing.less +++ b/frontend/theme/extras/blocks/listing.less @@ -111,6 +111,6 @@ font-size: 20px; line-height: 26px; font-weight: 300; - margin-bottom: 10px; + margin-top: 10px; } }