fix(SW-3550): Treat unlinked User as non-logged user within booking flow Approved-by: Joakim Jäderberg
34 lines
509 B
CSS
34 lines
509 B
CSS
.entry {
|
|
display: flex;
|
|
gap: var(--Space-x05);
|
|
justify-content: space-between;
|
|
margin-bottom: var(--Space-x15);
|
|
}
|
|
|
|
.prices {
|
|
justify-items: flex-end;
|
|
flex-shrink: 0;
|
|
display: grid;
|
|
}
|
|
|
|
.price {
|
|
color: var(--Text-Default);
|
|
|
|
&.discounted {
|
|
color: var(--Surface-Brand-Primary-1-OnSurface-Accent);
|
|
}
|
|
}
|
|
|
|
.strikeThroughRate {
|
|
text-decoration: line-through;
|
|
color: var(--Text-Secondary);
|
|
}
|
|
|
|
.approxPrice {
|
|
color: var(--Text-Secondary);
|
|
}
|
|
|
|
.ctaWrapper {
|
|
margin-top: var(--Space-x15);
|
|
}
|