diff options
| -rw-r--r-- | src/partials/Header.astro | 2 | ||||
| -rw-r--r-- | styles/shared.scss | 6 |
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%); |
