Reputation: 3437
I'm wondering whether there's an scss
variable associated with the color
of an activated menu item
(e.g. Top Bar
).
Doing a:
grep --color=auto -R 'active' *scss
I see among the found lines this:
scss/components/_menu.scss: .active > a {
scss/components/_menu.scss: background: $menu-item-background-active;
scss/components/_menu.scss: color: $menu-item-color-active;
I'm not too sure if these are the right lines to alter in my custom SCSS
file.
Upvotes: 0
Views: 607
Reputation: 1809
You can overwrite anything in your app.css file. Just put it after all the @include
lines.
.menu {
.active > a {
color: blue;
}
}
Upvotes: 1