aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAriel Costas Guerrero <94913521+arielcostas@users.noreply.github.com>2024-12-12 09:06:43 +0100
committerAriel Costas Guerrero <94913521+arielcostas@users.noreply.github.com>2024-12-12 09:06:43 +0100
commitb2c6996754658c6853538423aaf18d2638aa395c (patch)
treec050f77522ddfe334bb028df19457837e7bc0d2b
parent7bca44de33ae2d39fa4c53362f4bbbf600da2af7 (diff)
Fix header alignment and give some more hue to header
-rw-r--r--src/partials/Header.astro2
-rw-r--r--styles/shared.scss6
2 files changed, 5 insertions, 3 deletions
diff --git a/src/partials/Header.astro b/src/partials/Header.astro
index 46172a4..f513d27 100644
--- a/src/partials/Header.astro
+++ b/src/partials/Header.astro
@@ -115,6 +115,7 @@ import Favicon from "../assets/Favicon.astro";
display: flex;
flex-direction: column;
+ align-items: stretch;
justify-content: space-between;
gap: 0.5rem 0;
@@ -246,6 +247,7 @@ import Favicon from "../assets/Favicon.astro";
#nav-socials {
display: flex;
max-height: unset;
+ align-self:center;
}
}
}
diff --git a/styles/shared.scss b/styles/shared.scss
index 97f9c10..22a7292 100644
--- a/styles/shared.scss
+++ b/styles/shared.scss
@@ -1,9 +1,9 @@
$mainFontStack: 'Sen Variable', 'Arial', system-ui, sans-serif;
$monoFontStack: 'Fira Code', 'Consolas', monospace;
-$accent: hsl(215, 50%, 55%);
-$accentLight: hsl(215, 50%, 60%);
-$accentDark: hsl(215, 50%, 42%);
+$accent: hsl(209, 94%, 42%);
+$accentLight: hsl(215, 90%, 60%);
+$accentDark: hsl(215, 90%, 30%);
$dark: hsl(340, 13%, 5%);
$light: hsl(214, 64%, 98%);
$lightAlt: hsl(0, 0%, 100%);