2018-10-03 22:04:29 +02:00
|
|
|
html, body {
|
2018-11-03 12:16:13 +01:00
|
|
|
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;
|
2018-10-03 22:04:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2018-10-03 22:04:29 +02:00
|
|
|
|
2019-03-17 12:15:39 +01:00
|
|
|
transition: all .5s linear;
|
|
|
|
|
2018-10-03 22:04:29 +02:00
|
|
|
.app {
|
2018-11-03 12:16:13 +01:00
|
|
|
width: 100%;
|
2019-03-07 15:30:53 +01:00
|
|
|
height: 100%;
|
2018-11-03 12:16:13 +01:00
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
display: flex; flex-direction: column; resize: both;
|
2018-10-03 22:04:29 +02:00
|
|
|
}
|
2018-11-03 12:16:13 +01:00
|
|
|
}
|
2019-03-31 20:07:03 +02:00
|
|
|
|
|
|
|
$small_device: 650px;
|
|
|
|
@media only screen and (max-width: $small_device) {
|
2019-05-24 22:41:19 +02:00
|
|
|
html, body {
|
|
|
|
padding: 0!important;
|
|
|
|
}
|
|
|
|
|
2019-03-31 20:07:03 +02:00
|
|
|
.app-container {
|
|
|
|
bottom: 25px;
|
|
|
|
}
|
|
|
|
}
|