16 lines
277 B
CSS
16 lines
277 B
CSS
|
|
@import "tailwindcss";
|
||
|
|
|
||
|
|
@custom-variant dark (&:where(.dark, .dark *));
|
||
|
|
|
||
|
|
@layer utilities {
|
||
|
|
.scrollbar-hide {
|
||
|
|
/* IE and Edge */
|
||
|
|
-ms-overflow-style: none;
|
||
|
|
/* Firefox */
|
||
|
|
scrollbar-width: none;
|
||
|
|
}
|
||
|
|
.scrollbar-hide::-webkit-scrollbar {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
}
|