feat: Cria style body vazio

This commit is contained in:
ThiagoDuutra 2022-12-16 18:30:55 -03:00
parent 86436147e3
commit e7b53f2b48
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,43 @@
.container-main {
display: flex;
flex-direction: column;
justify-content: flex-end;
.empty-cart-content {
.empty-cart-title {
font-size: 24px;
font-family: $font-family;
font-weight: 700;
@media (max-width: 1024px) {
font-size: 18px;
line-height: 24px;
}
}
.empty-cart-message {
display: none;
}
.empty-cart-links {
#cart-choose-products {
font-family: $font-family-secundary;
font-size: 14px;
line-height: 16px;
}
.btn {
width: 28%;
background-color: transparent;
border: 1px solid $color-black;
border-radius: 0;
color: $color-black;
@media (min-width: 600px) and (max-width: 1024px) {
width: 26%;
}
@media (min-width: 275px) and (max-width: 599px) {
width: 60%;
}
}
}
}
}

View File

@ -15,6 +15,7 @@ $color-gray2: #7d7d7d;
$color-gray3: #f0f0f0;
$color-gray4: #8d8d8d;
$color-gray5: #e5e5e5;
$color-gray6: #c4c4c4;
$color-blue: #4267b2;
$color-blue-100: #00c8ff;