From 52f1a5b670cf173a953a1c55e1541f07278c7d10 Mon Sep 17 00:00:00 2001 From: Peter Gnodde Date: Wed, 31 Jul 2024 11:31:54 +0200 Subject: [PATCH] Fix Sass deprecation warning --- src/scss/_items.scss | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/scss/_items.scss b/src/scss/_items.scss index f84aa846..a0e16fe7 100644 --- a/src/scss/_items.scss +++ b/src/scss/_items.scss @@ -61,10 +61,6 @@ } > input { - &::-ms-clear { - display: none; - } - flex: 1 1 auto; min-width: 7rem; display: inline-block !important; @@ -79,6 +75,11 @@ line-height: inherit !important; user-select: auto !important; box-shadow: none !important; + + &::-ms-clear { + display: none; + } + &:focus { outline: none !important; } }