TeaWeb/web/css/static/main.scss

37 lines
517 B
SCSS
Raw Normal View History

html, body {
overflow-y: hidden;
2019-03-07 15:30:53 +01:00
height: 100%;
width: 100%;
position: fixed;
}
.app-container {
display: flex;
2019-04-04 21:47:52 +02:00
justify-content: stretch;
2019-03-07 15:30:53 +01:00
position: absolute;
2019-08-21 10:00:01 +02:00
top: 1.5em!important;
bottom: 0;
2019-03-17 12:15:39 +01:00
transition: all .5s linear;
.app {
width: 100%;
2019-03-07 15:30:53 +01: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 22:41:19 +02:00
html, body {
padding: 0!important;
}
.app-container {
2019-08-21 10:00:01 +02:00
bottom: 0;
}
}