From 0daa5d8dee9ea7a4bc27f7107b1de7db13dd2197 Mon Sep 17 00:00:00 2001 From: Susanne Kirchner Date: Fri, 12 Apr 2024 18:07:48 +0200 Subject: [PATCH] Fix invalid css on button style (#1975) --- 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 c5de5fd8..464b803f 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; } `;