Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Update frontend/src/index.css
Browse files- frontend/src/index.css +30 -18
frontend/src/index.css
CHANGED
|
@@ -100,37 +100,50 @@
|
|
| 100 |
border: 1px solid rgba(255, 255, 255, 0.05);
|
| 101 |
}
|
| 102 |
|
| 103 |
-
/*
|
| 104 |
* {
|
| 105 |
-
-
|
| 106 |
-
scrollbar-
|
| 107 |
}
|
| 108 |
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
height: 0;
|
| 113 |
}
|
| 114 |
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 119 |
}
|
| 120 |
|
| 121 |
.custom-scrollbar::-webkit-scrollbar {
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
height: 6px;
|
| 125 |
}
|
| 126 |
|
| 127 |
.custom-scrollbar::-webkit-scrollbar-track {
|
| 128 |
-
background:
|
|
|
|
| 129 |
}
|
| 130 |
|
| 131 |
.custom-scrollbar::-webkit-scrollbar-thumb {
|
| 132 |
-
background:
|
| 133 |
-
border-radius:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 134 |
}
|
| 135 |
|
| 136 |
/* Hide scrollbar utility */
|
|
@@ -156,4 +169,3 @@
|
|
| 156 |
}
|
| 157 |
|
| 158 |
|
| 159 |
-
|
|
|
|
| 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 |
}
|
| 170 |
|
| 171 |
|
|
|