website-2/styles/globals.css

14 lines
327 B
CSS
Raw Permalink Normal View History

2022-04-10 20:15:15 +10:00
@tailwind base;
@tailwind components;
@tailwind utilities;
/* hide scrollbar but allow scrolling */
body {
-ms-overflow-style: none; /* for Internet Explorer, Edge */
scrollbar-width: none; /* for Firefox */
overflow-y: scroll;
}
body::-webkit-scrollbar {
display: none; /* for Chrome, Safari, and Opera */
}