20 lines
267 B
SCSS
20 lines
267 B
SCSS
|
html, body {
|
||
|
height: 100%;
|
||
|
overflow-y: hidden;
|
||
|
}
|
||
|
|
||
|
.app-container {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
|
||
|
.app {
|
||
|
width: 100%;
|
||
|
height: calc(100% - 50px);
|
||
|
margin: 0;
|
||
|
|
||
|
display: flex; flex-direction: column; resize: both;
|
||
|
}
|
||
|
}
|