summaryrefslogtreecommitdiff
path: root/gae/frontend/src/app/shared/navbar/_navbar-theme.scss
blob: bba0989901c2c84c6c02564219f79e67069089f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@mixin nav-bar-theme($theme) {
  $primary: map-get($theme, primary);
  $accent: map-get($theme, accent);
  $warn: map-get($theme, warn);
  $background: map-get($theme, background);
  $foreground: map-get($theme, foreground);

  mat-toolbar.main-toolbar {
    .mat-list-item {
      color: mat-color($primary, '600-contrast') !important;
    }
  }
}