fix(talks): event list spacing

This commit is contained in:
Oliver Davies 2023-07-04 06:45:00 +01:00
parent 7914911db5
commit 36d11d7654

View file

@ -32,13 +32,13 @@ const { events } = Astro.props;
</a> </a>
) : ( ) : (
event.name event.name
)} )}{" "}
{event.location && `in ${event.location} -`} {event.location && `in ${event.location} -`}{" "}
{new Date(event.date).toLocaleDateString("en-GB", { {new Date(event.date).toLocaleDateString("en-GB", {
day: "numeric", day: "numeric",
month: "long", month: "long",
year: "numeric", year: "numeric",
})} })}{" "}
{event.online && "(online)"} {event.online && "(online)"}
</li> </li>
))} ))}