22 lines
335 B
CSS
22 lines
335 B
CSS
.row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
color: var(--Text-Default);
|
|
}
|
|
|
|
.price {
|
|
text-align: end;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.discounted {
|
|
color: var(--Text-Accent-Primary);
|
|
}
|
|
|
|
.price .strikeThroughRate {
|
|
text-decoration: line-through;
|
|
color: var(--Text-Secondary);
|
|
}
|