]> git.localhorst.tv Git - alttp.git/commitdiff
add a margin to event upcoming races heading
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Sun, 1 Oct 2023 14:16:26 +0000 (16:16 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Sun, 1 Oct 2023 14:16:26 +0000 (16:16 +0200)
resources/js/pages/Event.js

index 9e5c09f66995d10ab7322cce26ddc1808ba804bd..1a97cdc0700c808877eafa555cd6f6cb0b1a4804 100644 (file)
@@ -141,7 +141,7 @@ const Event = () => {
                <Container>
                        <Detail actions={actions} event={event} />
                        {episodes.length ? <>
-                               <h2>{i18n.t('events.upcomingEpisodes')}</h2>
+                               <h2 className="mt-4">{i18n.t('events.upcomingEpisodes')}</h2>
                                <EpisodeList episodes={episodes} />
                        </> : null}
                </Container>