opt-cc/static/src/app/app.component.scss

42 lines
694 B
SCSS
Raw Normal View History

@import "style/load-indicator.scss";
mat-sidenav-container, mat-sidenav-content, mat-sidenav {
2019-02-27 23:13:23 +01:00
height: calc(100vh - 50px);
min-height: fit-content;
2017-05-10 11:04:06 +02:00
display: inline;
}
mat-sidenav {
background: #222222;
top: 50px;
width: 250px;
2017-10-14 18:43:00 +02:00
}
2019-02-27 23:13:23 +01:00
.app-content-container {
overflow-x: auto;
position: relative;
min-height: calc(100vh - 50px)
}
2018-03-29 17:01:24 +02:00
#scrollTopBtn {
position: fixed;
2018-03-29 17:01:24 +02:00
bottom: 20px;
right: 30px;
z-index: 99;
background: rgba(16, 16, 16, 0.8);
&:hover {
background: #101010;
2017-09-03 12:49:59 +02:00
}
2019-02-27 23:13:23 +01:00
@media all and (max-width: 959px) {
bottom: 0;
left: 0;
width: 100vw;
border-radius: 3px 3px 0 0;
background: #101010;
min-height: 34px;
height: 3vw;
}
}