43 lines
817 B
CSS
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;
|
|
}
|
|
}
|