From 384c89daf27650d48669e7284d10f9f9538b3e1a Mon Sep 17 00:00:00 2001 From: Susanne Kirchner Date: Fri, 12 Apr 2024 10:56:30 +0200 Subject: [PATCH] Fix invalid css on button style --- src/components/button/button.styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/button/button.styles.ts b/src/components/button/button.styles.ts index c5de5fd80b..464b803f9f 100644 --- a/src/components/button/button.styles.ts +++ b/src/components/button/button.styles.ts @@ -590,7 +590,7 @@ export default css` /* Focus and checked are always on top */ :host([data-sl-button-group__button--focus]), - :host([data-sl-button-group__button[checked]]) { + :host([data-sl-button-group__button][checked]) { z-index: 2; } `;