35 lines
540 B
CSS
35 lines
540 B
CSS
html, body {
|
|
overflow-y: hidden;
|
|
height: 100%;
|
|
width: 100%;
|
|
position: fixed;
|
|
}
|
|
|
|
.app-container {
|
|
display: flex;
|
|
justify-content: stretch;
|
|
position: absolute;
|
|
top: 1.5em !important;
|
|
bottom: 0;
|
|
transition: all 0.5s linear;
|
|
}
|
|
.app-container .app {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
resize: both;
|
|
}
|
|
|
|
@media only screen and (max-width: 650px) {
|
|
html, body {
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.app-container {
|
|
bottom: 0;
|
|
}
|
|
}
|
|
|
|
/*# sourceMappingURL=main.css.map */
|