From 2df6349cce43d5cc44e1d82d9feec0579a4704b4 Mon Sep 17 00:00:00 2001 From: Alexandr Chernyaev Date: Thu, 24 Oct 2024 14:45:24 +0300 Subject: [PATCH] Improve color on active item menu --- resources/sass/core/mixins.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/sass/core/mixins.scss b/resources/sass/core/mixins.scss index fc1401394..bc607491e 100644 --- a/resources/sass/core/mixins.scss +++ b/resources/sass/core/mixins.scss @@ -26,7 +26,7 @@ &.active { > a { color: $hover-color; - @include color-schema($bg-color, 5%, 2.5%); + background-color: rgba(lighten($grey, 10), 0.25)!important; @extend .rounded; @extend .shadow-sm; } @@ -35,7 +35,7 @@ color: darken($link-color, 3%); &:hover, &:focus { - @include color-schema($bg-color, 3%, 2.5%); + background-color: rgba(lighten($grey, 10), 0.15); @extend .rounded; } }