aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Header/Header.module.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-08 18:42:06 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-08 18:50:39 +0100
commit4e878aab112b08a18f7285bbb0df1f20d38ee9cf (patch)
treeaf083b2fca62aed8e29882421b729d228b77d7da /src/components/Header/Header.module.scss
parenta30ac67f560ff2b3bc2a462065ac5ddaf783682c (diff)
chore: ensure 100vh height and improve Header/Footer styles
Diffstat (limited to 'src/components/Header/Header.module.scss')
-rw-r--r--src/components/Header/Header.module.scss4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/Header/Header.module.scss b/src/components/Header/Header.module.scss
index b6bd15d..4ad4ae5 100644
--- a/src/components/Header/Header.module.scss
+++ b/src/components/Header/Header.module.scss
@@ -1,3 +1,5 @@
+@use "@styles/abstracts/functions" as fun;
+
.wrapper {
display: grid;
grid-template-columns:
@@ -6,6 +8,8 @@
align-items: center;
padding: var(--spacing-sm) 0 var(--spacing-md);
position: relative;
+ background: var(--color-bg);
+ border-bottom: fun.convert-px(3) solid var(--color-border-lighter);
}
.body {