larxius commited on
Commit
7c7c038
·
verified ·
1 Parent(s): a3df76e

Update frontend/src/index.css

Browse files
Files changed (1) hide show
  1. frontend/src/index.css +14 -9
frontend/src/index.css CHANGED
@@ -94,25 +94,30 @@
94
  border: 1px solid rgba(255, 255, 255, 0.05);
95
  }
96
 
97
- /* Custom Modern Rounded Dark Scrollbars */
 
 
 
 
 
98
  ::-webkit-scrollbar {
99
  width: 7px;
100
  height: 7px;
101
  }
102
 
103
  ::-webkit-scrollbar-track {
104
- background: #020617;
105
  border-radius: 8px;
106
  }
107
 
108
  ::-webkit-scrollbar-thumb {
109
- background: #2563eb;
110
  border-radius: 8px;
111
- border: 1px solid #020617;
112
  }
113
 
114
  ::-webkit-scrollbar-thumb:hover {
115
- background: #38bdf8;
116
  }
117
 
118
  .custom-scrollbar::-webkit-scrollbar {
@@ -121,18 +126,18 @@
121
  }
122
 
123
  .custom-scrollbar::-webkit-scrollbar-track {
124
- background: #020617;
125
  border-radius: 8px;
126
  }
127
 
128
  .custom-scrollbar::-webkit-scrollbar-thumb {
129
- background: #2563eb;
130
  border-radius: 8px;
131
- border: 1px solid #0f172a;
132
  }
133
 
134
  .custom-scrollbar::-webkit-scrollbar-thumb:hover {
135
- background: #38bdf8;
136
  }
137
 
138
 
 
94
  border: 1px solid rgba(255, 255, 255, 0.05);
95
  }
96
 
97
+ /* Permanent Clean White Scrollbar */
98
+ * {
99
+ scrollbar-width: thin;
100
+ scrollbar-color: #ffffff rgba(15, 23, 42, 0.5);
101
+ }
102
+
103
  ::-webkit-scrollbar {
104
  width: 7px;
105
  height: 7px;
106
  }
107
 
108
  ::-webkit-scrollbar-track {
109
+ background: rgba(15, 23, 42, 0.5);
110
  border-radius: 8px;
111
  }
112
 
113
  ::-webkit-scrollbar-thumb {
114
+ background: #ffffff !important;
115
  border-radius: 8px;
116
+ border: 1px solid rgba(0, 0, 0, 0.2);
117
  }
118
 
119
  ::-webkit-scrollbar-thumb:hover {
120
+ background: #ffffff !important;
121
  }
122
 
123
  .custom-scrollbar::-webkit-scrollbar {
 
126
  }
127
 
128
  .custom-scrollbar::-webkit-scrollbar-track {
129
+ background: rgba(15, 23, 42, 0.5);
130
  border-radius: 8px;
131
  }
132
 
133
  .custom-scrollbar::-webkit-scrollbar-thumb {
134
+ background: #ffffff !important;
135
  border-radius: 8px;
136
+ border: 1px solid rgba(0, 0, 0, 0.2);
137
  }
138
 
139
  .custom-scrollbar::-webkit-scrollbar-thumb:hover {
140
+ background: #ffffff !important;
141
  }
142
 
143