mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-19 08:50:13 +01:00
24 lines
377 B
SCSS
24 lines
377 B
SCSS
|
|
@mixin base-header-theme() {
|
||
|
|
/deep/ base-header {
|
||
|
|
i.control-icon {
|
||
|
|
&:hover {
|
||
|
|
color: $nga-color-secondary;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.logo {
|
||
|
|
span {
|
||
|
|
color: $nga-color-secondary;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:hover span {
|
||
|
|
color: $nga-color-default;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.left > *,
|
||
|
|
.right > * {
|
||
|
|
border-color: rgba($nga-color-default, 0.2);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|