Files
web/apps/scandic-web/components/Blocks/DynamicContent/Overview/overview.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

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;
}
}