diff --git a/.gitignore b/.gitignore index 4d29575..0846f83 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +.vercel diff --git a/src/components/Header/header.module.scss b/src/components/Header/header.module.scss index 2a2ce7a..3984554 100644 --- a/src/components/Header/header.module.scss +++ b/src/components/Header/header.module.scss @@ -5,6 +5,22 @@ flex-direction: column; background: $black; + @media (min-width: 2500px) { + height: 180px; + } + + @media (min-width: 1200px) and (max-width: 2000px) { + height: 154px; + } + + @media (min-width: 1000px) and (max-width: 1200px) { + height: 137px; + } + + @media (max-width: 700px) { + height: 129px; + } + &__container-top { height: 76px; display: flex;