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
27 lines
547 B
CSS
27 lines
547 B
CSS
.levelSummary {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--Space-x3);
|
|
padding-bottom: var(--Space-x1);
|
|
}
|
|
|
|
.levelRequirements {
|
|
border-radius: var(--Corner-Radius-md);
|
|
background-color: var(--Surface-Brand-Primary-1-Default);
|
|
color: var(--Text-Interactive-Secondary);
|
|
padding: var(--Space-x05) var(--Space-x1);
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.levelSummaryText {
|
|
margin: 0;
|
|
}
|
|
|
|
@media screen and (min-width: 950px) {
|
|
.levelRequirements {
|
|
padding: var(--Space-x05) var(--Space-x1);
|
|
}
|
|
}
|