aboutsummaryrefslogtreecommitdiff
path: root/src/components/Header.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Header.astro')
-rw-r--r--src/components/Header.astro27
1 files changed, 2 insertions, 25 deletions
diff --git a/src/components/Header.astro b/src/components/Header.astro
index 52c0ca8..f2089a7 100644
--- a/src/components/Header.astro
+++ b/src/components/Header.astro
@@ -1,24 +1,4 @@
<style lang="scss">
- @use "../scss/variables" as *;
-
- header {
- padding-bottom: 1rem;
- position: relative;
- }
-
- .site-title {
- color: $colorText;
- font-weight: bold;
- left: 0;
- position: absolute;
- text-decoration: none;
- top: 0;
- }
-
- .nav-links {
- text-align: right;
- }
-
a {
margin-right: 1.5rem;
text-decoration: none;
@@ -30,9 +10,6 @@
</style>
<header>
- <a class="site-title" href="/">{import.meta.env.DEFAULT_TITLE}</a>
- <div class="nav-links">
- <a href="/">Home</a>
- <a href="/blog/">Blog</a>
- </div>
+ <a href="/">Home</a>
+ <a href="/blog/">Blog</a>
</header>