Files
web/components/Section/Link/link.module.css
2025-01-14 14:56:18 +01:00

32 lines
388 B
CSS

.linkWrapper {
align-items: baseline;
gap: var(--Spacing-x-half);
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;
}
}