commerce/components/price/styles.module.scss
2023-09-16 16:48:34 -05:00

25 lines
370 B
SCSS

@use 'styles/_typography';
.priceRanges {
@include typography.header;
display: flex;
gap: 10px;
.originalPrice {
text-decoration-line: line-through;
}
}
.variantPrice {
.originalPrice {
@include typography.body;
text-decoration-line: line-through;
}
.actualPrice {
@include typography.title;
}
}