feat(checkout): criado e modificado estilização.

This commit is contained in:
Luiz Felipe Silva 2022-12-26 20:56:07 -03:00
parent b3f830eb20
commit ca17d2432b

View File

@ -1,38 +1,64 @@
.empty-cart { .checkout-container {
font-family: $font-family; .cart-template {
&-content { align-items: center;
color: $color-black; flex-direction: column;
text-align: center; justify-content: center;
}
@include mq(md, max) { }
padding: 0 16px;
} .empty-cart {
} &-content {
h2 {
&-title { margin-bottom: 32px;
font-size: 20px; font-family: $font-family;
} font-size: 24px;
font-weight: 700;
&-links { text-transform: uppercase;
.link-choose-products { color: $color-black1;
background: $color-black; line-height: 0;
border: none; text-align: center;
border-radius: 5px;
transition: ease-in 0.22s all; @include mq(xl, min) {
outline: none; font-size: 48px;
font-family: $font-family; line-height: 65px;
font-style: normal; }
font-weight: 500; }
font-size: 14px;
line-height: 16px; @include mq(md, max) {
text-align: center; padding: 0 16px;
letter-spacing: 0.05em; }
color: $color-white; }
text-transform: uppercase;
&-message {
&:hover { display: none;
background: lighten($color-black, 5); }
}
} &-title {
} font-size: 20px;
}
&-links {
.link-choose-products {
background: $color-white1;
border: none;
outline: none;
border: 1px solid $color-black2;
border-radius: 0;
color: $color-black2;
padding: 16px 65px;
font-family: $font-family-secundary;
font-size: 14px;
font-weight: 400;
line-height: 16px;
text-align: center;
text-transform: uppercase;
margin-top: 0;
@include mq(xl, min) {
font-size: 28px;
line-height: 33px;
padding: 16px 121px;
}
}
}
} }