fixed active border on sidebar nav with nav-flat

pull/2256/head
REJack 2019-09-13 10:38:45 +02:00
parent e2ad19ab11
commit b8eac86970
No known key found for this signature in database
GPG Key ID: 9F3976CC630CC888
1 changed files with 8 additions and 2 deletions

View File

@ -301,6 +301,8 @@
> .nav-item {
> .nav-link {
&,
&.active {
border-color: $sidebar-light-submenu-active-bg;
}
}
@ -308,6 +310,7 @@
}
}
}
}
[class*='sidebar-dark-'] {
// Sidebar background color
@ -425,6 +428,8 @@
> .nav-item {
> .nav-link {
&,
&.active {
border-color: $sidebar-dark-submenu-active-bg;
}
}
@ -432,6 +437,7 @@
}
}
}
}
// Sidebar variants
@each $name, $color in $theme-colors {