larxius commited on
Commit
6b94073
·
verified ·
1 Parent(s): c9a5b3f

Update frontend/src/index.css

Browse files
Files changed (1) hide show
  1. frontend/src/index.css +18 -30
frontend/src/index.css CHANGED
@@ -100,50 +100,37 @@
100
  border: 1px solid rgba(255, 255, 255, 0.05);
101
  }
102
 
103
- /* Permanent Clean White Scrollbar */
104
  * {
105
- scrollbar-width: thin;
106
- scrollbar-color: #ffffff rgba(15, 23, 42, 0.5);
107
- }
108
-
109
- ::-webkit-scrollbar {
110
- width: 7px;
111
- height: 7px;
112
- }
113
-
114
- ::-webkit-scrollbar-track {
115
- background: rgba(15, 23, 42, 0.5);
116
- border-radius: 8px;
117
  }
118
 
119
- ::-webkit-scrollbar-thumb {
120
- background: #ffffff !important;
121
- border-radius: 8px;
122
- border: 1px solid rgba(0, 0, 0, 0.2);
123
  }
124
 
125
- ::-webkit-scrollbar-thumb:hover {
126
- background: #ffffff !important;
 
 
127
  }
128
 
129
  .custom-scrollbar::-webkit-scrollbar {
130
- width: 7px;
131
- height: 7px;
 
132
  }
133
 
134
  .custom-scrollbar::-webkit-scrollbar-track {
135
- background: rgba(15, 23, 42, 0.5);
136
- border-radius: 8px;
137
  }
138
 
139
  .custom-scrollbar::-webkit-scrollbar-thumb {
140
- background: #ffffff !important;
141
- border-radius: 8px;
142
- border: 1px solid rgba(0, 0, 0, 0.2);
143
- }
144
-
145
- .custom-scrollbar::-webkit-scrollbar-thumb:hover {
146
- background: #ffffff !important;
147
  }
148
 
149
  /* Hide scrollbar utility */
@@ -169,3 +156,4 @@
169
  }
170
 
171
 
 
 
100
  border: 1px solid rgba(255, 255, 255, 0.05);
101
  }
102
 
103
+ /* Global Clean UI: Scrollbars Hidden By Default Across App */
104
  * {
105
+ -ms-overflow-style: none;
106
+ scrollbar-width: none;
 
 
 
 
 
 
 
 
 
 
107
  }
108
 
109
+ *::-webkit-scrollbar {
110
+ display: none;
111
+ width: 0;
112
+ height: 0;
113
  }
114
 
115
+ /* Explicit custom scrollbar utility if needed */
116
+ .custom-scrollbar {
117
+ scrollbar-width: thin;
118
+ scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
119
  }
120
 
121
  .custom-scrollbar::-webkit-scrollbar {
122
+ display: block !important;
123
+ width: 6px;
124
+ height: 6px;
125
  }
126
 
127
  .custom-scrollbar::-webkit-scrollbar-track {
128
+ background: transparent;
 
129
  }
130
 
131
  .custom-scrollbar::-webkit-scrollbar-thumb {
132
+ background: rgba(150, 150, 150, 0.4) !important;
133
+ border-radius: 6px;
 
 
 
 
 
134
  }
135
 
136
  /* Hide scrollbar utility */
 
156
  }
157
 
158
 
159
+