chore: fix tailwind linter warning

This commit is contained in:
Steven 2023-07-29 15:51:01 +08:00
parent a44b6494bf
commit f5463af7db

View File

@ -12,16 +12,14 @@ html,
} }
@layer utilities { @layer utilities {
@variants responsive { /* Hide scrollbar for Chrome, Safari and Opera */
/* Hide scrollbar for Chrome, Safari and Opera */ .no-scrollbar::-webkit-scrollbar {
.no-scrollbar::-webkit-scrollbar { display: none;
display: none; }
}
/* Hide scrollbar for IE, Edge and Firefox */ /* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar { .no-scrollbar {
-ms-overflow-style: none; /* IE and Edge */ -ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */ scrollbar-width: none; /* Firefox */
}
} }
} }