mirror of
https://github.com/GuerillaStudio/souvenir.git
synced 2024-11-08 10:11:52 +00:00
refactor(layout): Vertically center for every pages
This commit is contained in:
parent
267829aabe
commit
4c8147feb6
2 changed files with 5 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
|||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
min-height: 100vh;
|
||||
background: var(--color-tertiary) url("/img/dotgrid.png");
|
||||
color: var(--color-light-text);
|
||||
|
|
|
@ -3,6 +3,10 @@
|
|||
/* ----------------------------------------------------------- */
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.layout {
|
||||
flex-grow: inherit;
|
||||
}
|
||||
|
||||
.welcome {
|
||||
justify-content: center;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue