+
-
@@ -90,5 +102,13 @@
#2c3e50,
#fd746c
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
+ /* hide scrollbar */
+ -ms-overflow-style: none;
+ scrollbar-width: none;
+ }
+
+ .infotainment-container::-webkit-scrollbar {
+ /* hide scrollbar */
+ display: none;
}
diff --git a/client/src/app.css b/client/src/app.css
index 9342690..3f9b53a 100644
--- a/client/src/app.css
+++ b/client/src/app.css
@@ -15,6 +15,12 @@
body {
@apply bg-black text-white;
+ /* hide scrollbar */
+ -ms-overflow-style: none;
+ scrollbar-width: none;
+ }
+ body::-webkit-scrollbar {
+ display: none;
}
}