website-2/styles/globals.css
Nick Bland a86517ef32
Hide Scrollbar automatically
Hidden scrollbar that is only displayed when actually scrolling rather than the ugly right bar that is always there.
2022-07-25 13:32:55 +10:00

14 lines
327 B
CSS

@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 */
}