39 lines
611 B
SCSS
39 lines
611 B
SCSS
.sellingPrice--hasListPrice {
|
|
font-weight: 700;
|
|
font-size: 25px;
|
|
line-height: 38px;
|
|
}
|
|
|
|
.installments--sellingInfo {
|
|
font-size: 0;
|
|
|
|
.installmentsNumber,
|
|
.installmentValue {
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
color: $color-gray6;
|
|
}
|
|
|
|
.installmentsNumber::after {
|
|
content: " x ";
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
}
|
|
|
|
.installmentValue {
|
|
&::before,
|
|
&::after {
|
|
content: "de ";
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
}
|
|
|
|
&::after {
|
|
content: " sem juros";
|
|
}
|
|
}
|
|
}
|