Jack
commited on
Commit
·
c3603bd
1
Parent(s):
db36533
added various files
Browse files- public/styles.css +16 -3
public/styles.css
CHANGED
@@ -29,7 +29,20 @@ span[class*='MuiTouchRipple-root'] {
|
|
29 |
display: none !important;
|
30 |
}
|
31 |
|
32 |
-
/*
|
33 |
-
|
34 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
}
|
|
|
29 |
display: none !important;
|
30 |
}
|
31 |
|
32 |
+
/* Hide scrollbar for all browsers, but allow scrolling */
|
33 |
+
html,
|
34 |
+
body {
|
35 |
+
overflow: hidden; /* Hide the scrollbar */
|
36 |
+
}
|
37 |
+
|
38 |
+
html,
|
39 |
+
body {
|
40 |
+
overflow-y: scroll; /* Allow vertical scrolling */
|
41 |
+
-ms-overflow-style: none; /* IE and Edge */
|
42 |
+
scrollbar-width: none; /* Firefox */
|
43 |
+
}
|
44 |
+
|
45 |
+
html::-webkit-scrollbar,
|
46 |
+
body::-webkit-scrollbar {
|
47 |
+
display: none; /* Hide scrollbar in Chrome, Safari, and Opera */
|
48 |
}
|