From f5463af7db01c3a97dc48cdf1984c2c9a5e8ec07 Mon Sep 17 00:00:00 2001 From: Steven Date: Sat, 29 Jul 2023 15:51:01 +0800 Subject: [PATCH] chore: fix tailwind linter warning --- web/src/css/index.css | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/web/src/css/index.css b/web/src/css/index.css index 9052e13..7af5db6 100644 --- a/web/src/css/index.css +++ b/web/src/css/index.css @@ -12,16 +12,14 @@ html, } @layer utilities { - @variants responsive { - /* Hide scrollbar for Chrome, Safari and Opera */ - .no-scrollbar::-webkit-scrollbar { - display: none; - } + /* Hide scrollbar for Chrome, Safari and Opera */ + .no-scrollbar::-webkit-scrollbar { + display: none; + } - /* Hide scrollbar for IE, Edge and Firefox */ - .no-scrollbar { - -ms-overflow-style: none; /* IE and Edge */ - scrollbar-width: none; /* Firefox */ - } + /* Hide scrollbar for IE, Edge and Firefox */ + .no-scrollbar { + -ms-overflow-style: none; /* IE and Edge */ + scrollbar-width: none; /* Firefox */ } }