49 lines
965 B
CSS
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;
|
|
}
|
|
}
|