Files
web/apps/scandic-web/components/Section/Link/link.module.css
Erik Tiekstra 88644597df chore: Replaced deprecated Spacing variables with current values
Approved-by: Matilda Landström
2025-11-12 12:56:22 +00:00

32 lines
383 B
CSS

.linkWrapper {
align-items: baseline;
gap: var(--Space-x05);
z-index: 1;
}
.mobile {
display: flex;
grid-column: 1 / -1;
justify-self: center;
}
.desktop {
display: none;
}
.icon {
align-self: center;
}
@media screen and (min-width: 768px) {
.mobile {
display: none;
}
.desktop {
display: flex;
grid-column: 2 / 3;
justify-self: end;
}
}