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
24 lines
466 B
CSS
24 lines
466 B
CSS
.container {
|
|
background-color: var(--Background-Primary);
|
|
}
|
|
|
|
.layout {
|
|
display: grid;
|
|
font-family:
|
|
var(--Body-Paragraph-Font-family), var(--Body-Paragraph-Font-fallback);
|
|
grid-template-rows: auto 1fr;
|
|
min-height: 100dvh;
|
|
max-width: var(--max-width-page);
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
}
|
|
|
|
.content {
|
|
display: grid;
|
|
padding-bottom: var(--Space-x9);
|
|
position: relative;
|
|
max-width: var(--max-width-content);
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
}
|