22 lines
306 B
SCSS
22 lines
306 B
SCSS
@use "@angular/material" as mat;
|
|
@use "../../theme-colors" as theme;
|
|
|
|
:host {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
@include mat.theme((
|
|
color: theme.$tertiary-palette
|
|
))
|
|
}
|
|
|
|
mat-sidenav,
|
|
mat-toolbar {
|
|
padding: 8pt;
|
|
}
|
|
|
|
mat-sidenav-container {
|
|
flex-grow: 1;
|
|
}
|