Files
web/apps/scandic-web/components/Blocks/DynamicContent/JobylonFeed/JobylonCard/jobylonCard.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

26 lines
488 B
CSS

.jobylonCard {
display: grid;
width: 100%;
padding: var(--Space-x2);
background-color: var(--Base-Surface-Primary-light-Normal);
border: 1px solid var(--Base-Border-Subtle);
border-radius: var(--Corner-Radius-md);
}
.deadline {
color: var(--Text-Secondary);
}
.contentWrapper {
display: grid;
gap: var(--Space-x1);
}
@media screen and (min-width: 768px) {
.contentWrapper {
grid-template-columns: 1fr auto;
gap: var(--Space-x2);
align-items: end;
}
}