fix(slider): Ajusta as font-sizes dos cards

This commit is contained in:
Filipe Quintanilha Evangelista 2023-02-10 13:34:21 -03:00
parent b960b55b18
commit cfe26eea9f
6 changed files with 42 additions and 0 deletions

View File

@ -20,6 +20,12 @@
color: #bababa;
padding-bottom: 8px;
}
@media only screen and (max-width: 1024px) {
.listPrice--summary {
font-size: 12px;
line-height: 16px;
}
}
.listPrice--summary::before {
content: "de ";
text-decoration: line-through;
@ -33,6 +39,12 @@
font-size: 24px !important;
line-height: 33px !important;
}
@media only screen and (max-width: 1024px) {
.sellingPrice--summary {
font-size: 18px !important;
line-height: 25px !important;
}
}
.sellingPrice {
font-weight: 700;

View File

@ -26,6 +26,12 @@
line-height: 25px;
color: #000000;
}
@media only screen and (max-width: 1024px) {
.brandName {
font-size: 14px;
line-height: 19px;
}
}
.nameContainer {
padding: 16px 0 8px;

View File

@ -18,4 +18,9 @@
line-height: 38px;
color: #575757;
font-weight: 400;
}
@media only screen and (max-width: 768px) {
.heading--shelf-title {
font-size: 20px;
}
}

View File

@ -10,6 +10,11 @@
color: $color-gray13;
padding-bottom: 8px;
@include mq(md, max) {
font-size: 12px;
line-height: 16px;
}
&::before {
content: 'de ';
text-decoration: line-through;
@ -24,6 +29,11 @@
.sellingPrice--summary {
font-size: 24px !important;
line-height: 33px !important;
@include mq(md, max) {
font-size: 18px !important;
line-height: 25px !important;
}
}
.sellingPrice {

View File

@ -18,6 +18,11 @@
font-size: 18px;
line-height: 25px;
color: $color-black2;
@include mq(md, max) {
font-size: 14px;
line-height: 19px;
}
}
.nameContainer {

View File

@ -8,4 +8,8 @@
line-height: 38px;
color: $color-gray6;
font-weight: 400;
@include mq(sm, max) {
font-size: 20px;
}
}