www-new/pages/_app.module.css

20 lines
358 B
CSS

.appContainer {
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* This makes the footer stay at the bottom, even if there's not much content
* on the screen.
*/
.contentContainer {
flex-grow: 1;
}
.defaultLayout {
margin: 0 auto;
max-width: calc(800rem / 16);
padding: 0 calc(20rem / 16);
padding-bottom: calc(20rem / 16);
}