TeaWeb/web/css/static/main.scss

38 lines
551 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;
min-height: 250px;
min-width: 250px;
}
.app-container {
display: flex;
justify-content: center;
2019-03-07 14:30:53 +00:00
position: absolute;
right: 10px;
left: 10px;
bottom: 40px;
top: 10px;
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) {
.app-container {
bottom: 25px;
}
}