Skip to content

Commit 0055b3b

Browse files
committed
fix: minor visual improvements
1 parent 21fb052 commit 0055b3b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/layouts/BaseLayout.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ const { seo } = Astro.props;
1717

1818
<html lang="en">
1919
<Head seo={seo} />
20-
<body class="bg-background text-foreground py-8 pb-12">
20+
<body class="bg-background text-foreground pb-12">
2121
<Header />
22-
<main>
22+
<main class="pt-24">
2323
<slot />
2424
</main>
2525
<Footer />

src/styles/global.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
--color-foreground: var(--palette-600);
4949
--color-muted-foreground: var(--palette-400);
5050
--color-headings: var(--palette-800);
51+
--color-border: var(--palette-300);
5152

5253
--font-sans: "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
5354
}

0 commit comments

Comments
 (0)