34 lines
441 B
SCSS
34 lines
441 B
SCSS
|
@mixin navigation-component-theme($theme) {
|
||
|
$accent: map-get($theme, accent);
|
||
|
|
||
|
.navigation-bar {
|
||
|
overflow: hidden;
|
||
|
position: fixed;
|
||
|
width: 100%;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
z-index: 1000;
|
||
|
|
||
|
.active {
|
||
|
color: mat-color($accent);
|
||
|
}
|
||
|
|
||
|
.user-label {
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
.app-logo {
|
||
|
margin-right: 30px;
|
||
|
margin-left: 20px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.progress-bar {
|
||
|
top: 64px;
|
||
|
left: 0;
|
||
|
position: fixed;
|
||
|
width: 100%;
|
||
|
z-index: 1;
|
||
|
}
|
||
|
}
|