forked from M3-Academy/desafio-react-e-typescript
fix: corrige os problema de tamanho do header
This commit is contained in:
parent
84d5b7a3d3
commit
1dc152ff58
1
.gitignore
vendored
1
.gitignore
vendored
@ -21,3 +21,4 @@
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.vercel
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user