From 7828090cef3ef2454ce7990d9cf36e9825828891 Mon Sep 17 00:00:00 2001 From: shahanneda Date: Sat, 3 Sep 2022 18:10:43 -0700 Subject: [PATCH] Added fixed header --- components/Header.module.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/components/Header.module.css b/components/Header.module.css index d7fbe86..5cefd74 100644 --- a/components/Header.module.css +++ b/components/Header.module.css @@ -2,6 +2,13 @@ display: flex; justify-content: space-between; align-items: center; + position: fixed; + top: 0; + left: 0; + width: 100vw; + background: var(--dark--primary-background); + z-index: 98; + box-sizing: border-box; padding: calc(10rem / 16) calc(100rem / 16) 0 calc(100rem / 16); }