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