Files
web/packages/booking-flow/lib/components/SignupPromo/signupPromo.module.css
Bianca Widstam d9ec1b1f2d Merged in chore/BOOK-739-replace-caption (pull request #3428)
chore(BOOK-739): replace caption with typography

* chore(BOOK-739): replace caption with typography

* chore(BOOK-739): refactor div

* chore(BOOK-739): refactor badge

* chore(BOOK-739): remove span

* chore(BOOK-739): skeleton update

* chore(BOOK-739): update

* chore(BOOK-739): update reward

* chore(BOOK-739): update voucher currency


Approved-by: Erik Tiekstra
2026-01-14 09:33:27 +00:00

49 lines
965 B
CSS

.memberDiscountBannerMobile {
width: 100%;
background: var(--Primary-Light-Surface-Normal);
padding: var(--Space-x15);
display: flex;
align-items: center;
justify-content: center;
}
.memberDiscountBannerDesktop {
display: none;
background: var(--Primary-Light-Surface-Normal);
border-radius: var(--Corner-radius-xl) var(--Corner-radius-xl) 0px
var(--Corner-radius-xl);
align-items: center;
padding: var(--Space-x15) var(--Space-x2);
gap: var(--Space-x2);
position: relative;
}
.red {
color: var(--Text-Accent-Primary);
}
.badge {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: -12px;
left: -12px;
height: 30px;
width: 30px;
background-color: var(--Main-Grey-White);
border-radius: 50%;
font-size: 24px;
overflow: hidden;
}
@media (min-width: 1367px) {
.memberDiscountBannerMobile {
display: none;
}
.memberDiscountBannerDesktop {
display: flex;
}
}