13 lines
181 B
SCSS
13 lines
181 B
SCSS
body {
|
|
max-height: 100vh;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
main {
|
|
height: calc(100vh - 124px);
|
|
overflow-y: scroll;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|