TeaWeb/web/css/static/main.scss

37 lines
517 B
SCSS
Raw Normal View History

html, body {
overflow-y: hidden;
2019-03-07 14:30:53 +00:00
height: 100%;
width: 100%;
position: fixed;
}
.app-container {
display: flex;
2019-04-04 19:47:52 +00:00
justify-content: stretch;
2019-03-07 14:30:53 +00:00
position: absolute;
2019-08-21 08:00:01 +00:00
top: 1.5em!important;
bottom: 0;
2019-03-17 11:15:39 +00:00
transition: all .5s linear;
.app {
width: 100%;
2019-03-07 14:30:53 +00:00
height: 100%;
margin: 0;
display: flex; flex-direction: column; resize: both;
}
}
$small_device: 650px;
@media only screen and (max-width: $small_device) {
2019-05-24 20:41:19 +00:00
html, body {
padding: 0!important;
}
.app-container {
2019-08-21 08:00:01 +00:00
bottom: 0;
}
}