diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-19 21:14:40 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-19 21:14:40 +0100 |
| commit | 1b9510737a2c20ae1d984aabc080b370216dab68 (patch) | |
| tree | e27b16894e07d455c98126303ea8bedf335c94de | |
| parent | a76fd2721ebea4172d4dc33da1f47ad57679d03e (diff) | |
Big logo
| -rw-r--r-- | public/css/modules/nav.css | 4 | ||||
| -rw-r--r-- | src/components/Navbar/Logo.astro | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/public/css/modules/nav.css b/public/css/modules/nav.css index 20c2b32..66cf019 100644 --- a/public/css/modules/nav.css +++ b/public/css/modules/nav.css @@ -14,8 +14,10 @@ } .nav__logo { - text-align: center; margin-block-end: var(--margin-block-sm); + font-family: var(--font-serif); + font-size: var(--font-size-5); + font-weight: 700; } .nav__logo a { diff --git a/src/components/Navbar/Logo.astro b/src/components/Navbar/Logo.astro index b3af6fb..6dc372c 100644 --- a/src/components/Navbar/Logo.astro +++ b/src/components/Navbar/Logo.astro @@ -7,7 +7,7 @@ const locale = getLocaleFromPath(Astro.url.pathname); const t = translate(locale); --- -<p class="title title--small nav__logo"> +<p class="nav__logo"> <a href="/"> {t(tSite, { key: 'scots-leid-associe' })} </a> |
