Hide scrollbar on page

Removed visible scrollbar across browsers by adding CSS to hide scrollbar (Firefox, IE/Edge, WebKit) while preserving scroll functionality. Updated src/index.css accordingly.

X-Lovable-Edit-ID: edt-7f8ddf69-2219-44a8-bada-d03e11f1b84a
This commit is contained in:
gpt-engineer-app[bot]
2026-01-27 23:58:43 +00:00
+6
View File
@@ -69,6 +69,12 @@
html {
scroll-behavior: smooth;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE/Edge */
}
html::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera */
}
body {