We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77709ab commit d896a08Copy full SHA for d896a08
2 files changed
src/components/BackButton.astro
@@ -6,9 +6,11 @@ import { SITE } from "@/config";
6
7
{
8
SITE.showBackButton && (
9
- <div class="mx-auto flex w-full max-w-app items-center justify-start px-2">
+ <div
10
+ id="back-button"
11
+ class="mx-auto flex w-full max-w-app items-center justify-start px-2"
12
+ >
13
<LinkButton
- id="back-button"
14
href="/"
15
class="focus-outline mt-8 mb-2 flex hover:text-foreground/75"
16
>
src/layouts/PostDetails.astro
@@ -87,7 +87,7 @@ const nextPost =
87
<main
88
id="main-content"
89
class:list={[
90
- "mx-auto w-full max-w-app px-4 pb-12",
+ "post mx-auto w-full max-w-app px-4 pb-12",
91
{ "mt-8": !SITE.showBackButton },
92
]}
93
data-pagefind-body
0 commit comments