feat: adiciona #cart css

This commit is contained in:
Patrick Reis Santos 2022-12-14 22:04:23 -03:00
parent 0ec753cf48
commit 0dff916add

View File

@ -1,38 +1,44 @@
.empty-cart { .empty-cart {
font-family: $font-family; font-family: $font-family;
&-content { &-content {
color: $color-black; color: $color-black;
text-align: center; text-align: center;
@include mq(md, max) { @include mq(md, max) {
padding: 0 16px; padding: 0 16px;
} }
} }
&-title { &-title {
font-size: 20px; font-size: 20px;
} }
&-links { &-links {
.link-choose-products { .link-choose-products {
background: $color-black; box-sizing: border-box;
border: none; width: 327px;
border-radius: 5px; height: 48px;
transition: ease-in 0.22s all; border: 1px solid #000000;
outline: none; font-size: 0px;
font-family: $font-family; padding: 15px 62px 17px 62px;
font-style: normal; background-color: transparent;
font-weight: 500; color: #000000;
font-size: 14px;
line-height: 16px;
text-align: center;
letter-spacing: 0.05em;
color: $color-white;
text-transform: uppercase;
&:hover { &:hover {
background: lighten($color-black, 5); background: lighten($color-black, 5);
} }
} &::before {
} font-family: "Tenor Sans";
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 16px;
text-align: center;
text-transform: uppercase;
font-size: 14px;
display: block;
content: "CONTINUAR COMPRANDO";
}
}
}
} }