26 lines
367 B
SCSS
26 lines
367 B
SCSS
body.centred {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
min-height: 100vh;
|
|
}
|
|
|
|
body.centred main {
|
|
max-width: 95vw;
|
|
|
|
@media (min-width: 768px) {
|
|
max-width: min(80vw, 1280px);
|
|
}
|
|
}
|
|
|
|
body.centred:not(.vcentred) main {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
body.centred footer {
|
|
text-align: center;
|
|
opacity: 0.8;
|
|
}
|