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

47 lines
629 B
SCSS
Raw Normal View History

mat-sidenav {
background: white;
}
.all-wrap {
min-height: 100vh;
}
.page-wrap {
2018-08-22 20:26:08 +00:00
display: flex;
flex-direction: column;
min-height: 100vh;
}
2019-10-08 05:43:49 +00:00
.filler {
flex-grow: 1;
}
.content {
2018-08-22 20:26:08 +00:00
flex: 1;
2018-08-22 20:04:41 +00:00
}
2018-08-27 18:21:35 +00:00
mat-slide-toggle {
margin-left: 1rem;
}
.fast-access {
display: flex;
justify-content: space-around;
}
.footer {
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
/*
* Make the Component injected by Router Outlet full height:
*/
main {
display: flex;
flex-direction: column;
> *:not(router-outlet) {
flex: 1;
display: block;
}
}