fix(talks): event list spacing
This commit is contained in:
parent
7914911db5
commit
36d11d7654
|
@ -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>
|
||||||
))}
|
))}
|
||||||
|
|
Loading…
Reference in a new issue