Replace color variables

This commit is contained in:
Nolo 2021-02-15 15:40:58 +00:00 committed by GitHub
parent 63ad746995
commit 33aa58d4e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,24 +34,24 @@
//underline navigation links
.nav-pills > li.active > a,
.nav-pills > li > a.active {
color: $primary;
color: var(--primary);
font-weight: 500;
background-color: $secondary;
border-bottom: 3px solid $tertiary;
background-color: var(--secondary);
border-bottom: 3px solid var(--tertiary);
}
//remove highlighting navigation background on hover
.nav-pills > li > a:hover {
background-color: $secondary;
background-color: var(--secondary);
}
//fix color of user profile navigation icons
.user-main .nav-pills {
a.active i {
color: $primary;
color: var(--primary);
}
a:hover:not(.active) i {
color: $quaternary;
color: var(--quaternary);
}
}