15 lines
204 B
CSS
15 lines
204 B
CSS
html,
|
|
body,
|
|
#main {
|
|
margin: 0;
|
|
padding: 0;
|
|
min-height: 100dvh;
|
|
width: 100dvw;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#main {
|
|
background-color: #214;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|