32 lines
545 B
CSS
32 lines
545 B
CSS
.divider {
|
|
margin-top: var(--Space-x2);
|
|
}
|
|
|
|
.teamMemberCardButton {
|
|
border-radius: var(--Corner-Radius-md);
|
|
color: var(--Text-Brand-OnPrimary-3-Accent);
|
|
|
|
&:focus,
|
|
&:not(:disabled):hover {
|
|
color: var(--Text-Brand-OnPrimary-3-Accent);
|
|
}
|
|
}
|
|
|
|
.membershipCardsContainer {
|
|
display: grid;
|
|
gap: var(--Space-x2);
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.divider {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.membershipCardsContainer {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
}
|