Turned header into a fixed element, main takes 100vh

pull/2/head
Thomasorus 2021-05-12 20:31:46 +02:00
rodzic e1dc940d9f
commit 029f2a40a0
1 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -1,12 +1,14 @@
header {
position: fixed;
display: flex;
justify-content: space-between;
align-items: center;
height: 5vh;
height: auto;
width: 100%;
}
main {
height: 95vh;
height: 100vh;
display: grid;
place-items: center;
}