styles(home): ajustando posicion do footer ácima de 2500 px que estava quebrando

This commit is contained in:
Bernardo Cunha Ernani Waldhelm 2023-01-12 13:47:10 -03:00
parent d2db685cf6
commit 8cfdea00b6
3 changed files with 7 additions and 1 deletions

View File

@ -1,12 +1,14 @@
@import '../../variaveis';
.footer {
position: relative;
position: sticky;
bottom: 0;
top: 100%;
width: 100%;
margin-top: 84px;
@media #{$mq-desktop}, #{$mq-tablet},#{$mq-mobile} {
position: relative;
margin-top: 80px;
}
}

View File

@ -22,6 +22,7 @@
margin-bottom: 80px;
@media #{$mq-desktop}, #{$mq-tablet}, #{$mq-mobile} {
margin-bottom: 40px;
font-size: 24px;
line-height: 28px;
}

View File

@ -1,2 +1,5 @@
.home {
@media (min-width: 3000px) {
height: 100vh;
}
}