web-remote/src/app/app.component.scss

37 lines
505 B
SCSS
Raw Normal View History

mat-sidenav {
2019-11-07 18:02:26 +00:00
background: white;
}
2019-11-07 18:02:26 +00:00
mat-sidenav-container {
min-height: 100vh;
2018-08-22 20:04:41 +00:00
}
2018-08-27 18:21:35 +00:00
mat-slide-toggle {
2019-11-07 18:02:26 +00:00
margin-top: 0.8rem;
margin-left: 1rem;
font-size: 80%;
2018-08-27 18:21:35 +00:00
}
.fast-access {
2019-11-07 18:02:26 +00:00
display: flex;
justify-content: space-around;
2018-08-27 18:21:35 +00:00
}
.footer {
2019-11-07 18:02:26 +00:00
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
/*
* Make the Component injected by Router Outlet full height:
*/
main {
2019-11-07 18:02:26 +00:00
display: flex;
flex-direction: column;
> *:not(router-outlet) {
flex: 1;
display: block;
}
}