Files
web/apps/scandic-web/components/LanguageSwitcher/LanguageSwitcherContent/languageSwitcherContent.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

43 lines
817 B
CSS

.languageWrapper {
display: grid;
gap: var(--Space-x3);
padding: var(--Space-x3) var(--Space-x2);
}
.subtitle {
font-family: var(--typography-Subtitle-2-fontFamily);
font-size: var(--typography-Subtitle-2-Mobile-fontSize);
font-weight: var(--typography-Subtitle-2-fontWeight);
color: var(--Base-Text-High-contrast);
}
.list {
list-style: none;
}
.link {
padding: var(--Space-x1);
border-radius: var(--Corner-radius-md);
display: flex;
gap: var(--Space-x1);
justify-content: space-between;
align-items: center;
text-decoration: none;
border-radius: var(--Corner-radius-md);
}
@media screen and (min-width: 768px) {
.backWrapper,
.backButton {
display: none;
}
.languageWrapper {
padding: var(--Space-x2) var(--Space-x3);
}
.subtitle {
display: none;
}
}