18 lines
340 B
CSS
18 lines
340 B
CSS
html, body {
|
|
height: 100%;
|
|
overflow-y: hidden; }
|
|
|
|
.app-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center; }
|
|
.app-container .app {
|
|
width: 100%;
|
|
height: calc(100% - 50px);
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
resize: both; }
|
|
|
|
/*# sourceMappingURL=main.css.map */
|