15 lines
196 B
CSS
15 lines
196 B
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background-color: whitesmoke;
|
|
}
|
|
|
|
#container {
|
|
width: 100%;
|
|
flex-grow: 1;
|
|
display: flex;
|
|
overflow-y: hidden;
|
|
flex-direction: column;
|
|
}
|