summaryrefslogtreecommitdiff
path: root/src/layouts/Layout.astro
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-18 18:35:45 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-18 18:35:45 +0100
commitdcf5bd40027f4264d2cd201278824e185869c412 (patch)
tree71e504dcaca31a29d7401a57f6375cb4c2d4082b /src/layouts/Layout.astro
parent363cb70343106b5a66b8fedf261ca0122a242302 (diff)
Back to top link goes RIGHT to the top
Diffstat (limited to 'src/layouts/Layout.astro')
-rw-r--r--src/layouts/Layout.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index 54b8c25..ff58e82 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -26,7 +26,7 @@ const t = translate(locale);
<meta name="generator" content={Astro.generator} />
<title>{title} | {t(site, { key: 'title' })}</title>
</head>
- <body>
+ <body id="top">
<Navbar />
<slot />
<Footer />