Skip to content

Commit

Permalink
update max width of header with design
Browse files Browse the repository at this point in the history
  • Loading branch information
trulshj committed Dec 10, 2024
1 parent c50684f commit 26e02e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/navigation/header/header.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

.nav {
--nav-height: 5rem;
max-width: min(960px, calc(100vw - 2rem));
max-width: min(1091px, calc(100vw - 2rem));
min-height: var(--nav-height);
position: relative;
margin-inline: auto;
Expand All @@ -41,12 +41,12 @@

.wrapper {
position: absolute;
padding: 0 1rem;
padding: 0 3rem;
border-radius: 0.75rem;
background: var(--background-header-light-transparent);
box-shadow: 0px 0.5px 2px 0px #eaeaea;
backdrop-filter: blur(40px);
max-width: min(960px, calc(100vw - 2rem));
max-width: min(1091px, calc(100vw - 2rem));
width: 100%;
justify-self: center;

Expand Down

0 comments on commit 26e02e3

Please sign in to comment.