26 lines
406 B
SCSS
26 lines
406 B
SCSS
@import "style/load-indicator.scss";
|
|
|
|
mat-sidenav-container, mat-sidenav-content, mat-sidenav {
|
|
height: calc(100vh - 65px);
|
|
min-height: fit-content;
|
|
display: inline;
|
|
}
|
|
|
|
mat-sidenav {
|
|
background: #222222;
|
|
top: 50px;
|
|
width: 250px;
|
|
}
|
|
|
|
#scrollTopBtn {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
right: 30px;
|
|
z-index: 99;
|
|
background: rgba(16, 16, 16, 0.8);
|
|
|
|
&:hover {
|
|
background: #101010;
|
|
}
|
|
}
|