diff --git a/docs/docs/resources/changelog.md b/docs/docs/resources/changelog.md index 6e7c81721..063497936 100644 --- a/docs/docs/resources/changelog.md +++ b/docs/docs/resources/changelog.md @@ -14,8 +14,9 @@ During the alpha period, things might break! We take breaking changes very serio ## Next -- 🚨 BREAKING: Renamed `` to `` and improved compatibility for non-image content. -- Fixed a bug that caused an undesired margin below radio groups +- 🚨 BREAKING: Renamed `` to `` and improved compatibility for non-image content +- Fixed a bug that caused `` to have an undesired margin below it +- Fixed a bug in `` that caused incorrect spacing of icons ## 3.0.0-alpha.12 diff --git a/src/components/select/select.css b/src/components/select/select.css index 88312e37f..175d8bf16 100644 --- a/src/components/select/select.css +++ b/src/components/select/select.css @@ -136,13 +136,17 @@ } .suffix::slotted(*) { - margin-inline-start: var(--wa-space-sm); + margin-inline-start: var(--wa-space-s); } .prefix::slotted(*) { margin-inline-end: var(--wa-space); } +:host([multiple]) .prefix::slotted(*) { + margin-inline: var(--wa-space); +} + /* Clear button */ [part~='clear-button'] { display: inline-flex;