Chore/BOOK-773 replace old typography variables * chore(BOOK-773): Replaced body typography * chore(BOOK-773): Replaced caption typography * chore(BOOK-773): Replaced footnote typography * chore(BOOK-773): Replaced subtitle typography Approved-by: Bianca Widstam
36 lines
590 B
CSS
36 lines
590 B
CSS
.languageWrapper {
|
|
display: grid;
|
|
gap: var(--Space-x3);
|
|
padding: var(--Space-x3) var(--Space-x2);
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|