feat: Faz responsividade mobile 1180px

This commit is contained in:
Patrick Reis Santos 2022-10-12 15:22:49 -03:00
parent 9e00e5cc2b
commit e9ca58f608

View File

@ -59,11 +59,11 @@ body {
}
.top-img {
margin: 73px 0 179px;
padding: 73px 0 179px;
}
.infocard-meio {
padding: 80px 0;
padding: 0 0 80px;
display: grid;
grid-template-columns: repeat(3, max-content);
gap: 20px;
@ -90,7 +90,7 @@ body {
line-height: 24px;
}
@media screen and (max-width: 820px) {
@media screen and (max-width: 1180px) {
.top-titulo-h2 {
font-size: 20px;
line-height: 24px;
@ -115,7 +115,12 @@ body {
.top-img {
width: 239px;
height: auto;
margin: 65px 0 90px;
padding: 65px 0 0;
}
.infocard-meio {
grid-template-columns: 1fr;
padding: 90px 32px 80px;
}
}