fix: corrige os problema de tamanho do header

This commit is contained in:
marlon passos 2023-03-29 21:58:43 -03:00
parent 84d5b7a3d3
commit 1dc152ff58
2 changed files with 17 additions and 0 deletions

1
.gitignore vendored
View File

@ -21,3 +21,4 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.vercel

View File

@ -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;