Browse Source

Fix color of disabled dropdown-item (#2052)

Co-authored-by: Paweł Kuna <1282324+codecalm@users.noreply.github.com>
BG-Software 1 month ago
parent
commit
78392b6b4b
2 changed files with 6 additions and 1 deletions
  1. 5 0
      .changeset/good-birds-smash.md
  2. 1 1
      src/scss/layout/_navbar.scss

+ 5 - 0
.changeset/good-birds-smash.md

@@ -0,0 +1,5 @@
+---
+"@tabler/core": patch
+---
+
+Fix `color` of disabled `dropdown-item` in Navbar component

+ 1 - 1
src/scss/layout/_navbar.scss

@@ -40,7 +40,7 @@
         color: inherit;
 
         &.disabled {
-          color: var(--#{$prefix}gray-300);
+          color: var(--#{$prefix}disabled-color);
           pointer-events: none;
           background-color: transparent;
         }