diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-13 14:59:42 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-13 14:59:42 +0100 |
| commit | d07c2f6a7ed699f1a7e5762c06b9ec4e8a8e5e94 (patch) | |
| tree | f4ed78caa9a3d86c3fd7903bdb712c5164793075 /src/components | |
| parent | 910dc5183c52d4d58cf5ba65583423a95dffdb30 (diff) | |
Fixes dark/light color-scheme switching
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/Footer.astro | 2 | ||||
| -rw-r--r-- | src/components/Navbar.astro | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Footer.astro b/src/components/Footer.astro index f5de8b8..2f58ae2 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -2,7 +2,7 @@ --- -<footer class="dark"> +<footer> <p class="btn back-to-top-link"> <a href="#main">▴ Back til tap</a> </p> diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro index 1ce0749..605ba68 100644 --- a/src/components/Navbar.astro +++ b/src/components/Navbar.astro @@ -14,7 +14,7 @@ const { locale } = Astro.props; const t = translate(locale); --- -<nav class="dark"> +<nav> <h1 class="logo"> <a href="/"> {t(tSite, { key: 'scots-leid-associe' })} |
