diff --git a/docs/getting-started/changelog.md b/docs/getting-started/changelog.md index 6fbafd9b9..0d337ca50 100644 --- a/docs/getting-started/changelog.md +++ b/docs/getting-started/changelog.md @@ -9,6 +9,7 @@ _During the beta period, these restrictions may be relaxed in the event of a mis ## Next - Fixed a bug where dynamically changing menu items in `sl-select` would cause the display label to be blank [#374](https://github.com/shoelace-style/shoelace/discussions/374) +- Fixed the margin in `sl-menu-label` to align with menu items ## 2.0.0-beta.33 diff --git a/src/components/menu-label/menu-label.scss b/src/components/menu-label/menu-label.scss index 2fd5abafe..800313b2b 100644 --- a/src/components/menu-label/menu-label.scss +++ b/src/components/menu-label/menu-label.scss @@ -11,6 +11,6 @@ line-height: var(--sl-line-height-normal); letter-spacing: var(--sl-letter-spacing-normal); color: var(--sl-color-gray-400); - padding: var(--sl-spacing-xx-small) var(--sl-spacing-xx-large); + padding: var(--sl-spacing-xx-small) var(--sl-spacing-x-large); user-select: none; }