feat(SW-3581): Set price colors to scandic red * Set price colors to scandic red * Remove comment Approved-by: Bianca Widstam Approved-by: Joakim Jäderberg
27 lines
405 B
CSS
27 lines
405 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(--Scandic-Brand-Scandic-Red);
|
|
}
|
|
|
|
.price .strikeThroughRate {
|
|
text-decoration: line-through;
|
|
color: var(--Text-Secondary);
|
|
}
|
|
|
|
.bookingCodeCell {
|
|
justify-content: center;
|
|
width: 100%;
|
|
}
|