mirror of
https://github.com/vercel/commerce.git
synced 2025-05-19 16:07:01 +00:00
25 lines
370 B
SCSS
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;
|
|
}
|
|
}
|