beatrun-courses-server-docker/tailwind-files/input.css
2024-08-29 09:48:27 +05:00

20 lines
380 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
/* 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 */
}
}
html {
@apply overflow-x-hidden;
}