TeaWeb/web/css/static/main.scss

38 lines
556 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;
2019-04-04 21:47:52 +02:00
//min-height: 250px;
//min-width: 250px;
}
.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;
right: 10px;
left: 10px;
bottom: 40px;
top: 10px;
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) {
.app-container {
bottom: 25px;
}
}