Files
web/apps/scandic-web/components/Blocks/DynamicContent/Overview/MembershipOverviewCard/membershipOverviewCard.module.css
Erik Tiekstra 4de24e9f2a feat(BOOK-391): Added theme and logos for Bassin Seven
* chore: Updated border-radius variables after import change

Approved-by: Linus Flood
2026-01-22 07:03:25 +00:00

49 lines
954 B
CSS

.card {
background-color: var(--Surface-Brand-Primary-3-Default);
border-radius: var(--Corner-Radius-lg);
padding: var(--Space-x3) var(--Space-x2);
position: relative;
min-height: 200px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.membershipHeader {
display: flex;
align-items: center;
gap: var(--Space-x1);
margin-bottom: var(--Space-x05);
}
.headingText {
color: var(--Text-Brand-OnPrimary-3-Heading);
}
.divider {
margin: var(--Space-x4) 0;
}
.bottom {
display: flex;
justify-content: space-between;
align-items: center;
gap: var(--Space-x1);
}
.pointsValue {
color: var(--Text-Brand-OnPrimary-3-Accent);
}
@media screen and (max-width: 767px) {
.bottom {
flex-direction: column;
align-items: stretch;
gap: var(--Space-x4);
width: 100%;
}
}
@media screen and (min-width: 1367px) {
.card {
padding: var(--Space-x3) var(--Space-x4) var(--Space-x4);
}
}