From c87bba34a594449c8007c489e335bc41d97edbc2 Mon Sep 17 00:00:00 2001 From: John Jenkins Date: Tue, 25 Aug 2026 00:54:32 +0100 Subject: [PATCH] fix: invalid @supports statement --- src/components/icon/icon.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/icon/icon.css b/src/components/icon/icon.css index 233ebe89a..04e544403 100644 --- a/src/components/icon/icon.css +++ b/src/components/icon/icon.css @@ -79,7 +79,7 @@ svg { * changes, but it will at least * respect the dir on component load. */ -@supports not selector(:dir(rtl)) and selector(:host-context([dir='rtl'])) { +@supports (not selector(:dir(rtl))) and (selector(:host-context([dir='rtl']))) { :host(.icon-rtl) .icon-inner { transform: scaleX(-1); }