From 3259faec06029192fae3f1d52ba0067bcb278b89 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Mon, 23 Nov 2020 09:44:49 -0500 Subject: [PATCH] Fixes #272 --- docs/getting-started/changelog.md | 4 ++++ src/components/menu-item/menu-item.scss | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/getting-started/changelog.md b/docs/getting-started/changelog.md index 8854ca9e..c0572d58 100644 --- a/docs/getting-started/changelog.md +++ b/docs/getting-started/changelog.md @@ -6,6 +6,10 @@ Components with the Experimental badge _During the beta period, these restrictions may be relaxed in the event of a mission-critical bug._ 🐛 +## Next + +- Fixed a bug where `sl-menu-item` color variable was incorrect [#272](https://github.com/shoelace-style/shoelace/issues/272) + ## 2.0.0-beta.23 - Added `sl-format-number` component diff --git a/src/components/menu-item/menu-item.scss b/src/components/menu-item/menu-item.scss index e5d344b4..77468664 100644 --- a/src/components/menu-item/menu-item.scss +++ b/src/components/menu-item/menu-item.scss @@ -14,7 +14,7 @@ line-height: var(--sl-line-height-normal); letter-spacing: var(--sl-letter-spacing-normal); text-align: left; - color: var(--color-gray-40); + color: var(--sl-color-gray-30); padding: var(--sl-spacing-xx-small) var(--sl-spacing-x-large); transition: var(--sl-transition-fast) fill; user-select: none;