Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Update frontend/src/index.css
Browse files- 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 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 98 |
::-webkit-scrollbar {
|
| 99 |
width: 7px;
|
| 100 |
height: 7px;
|
| 101 |
}
|
| 102 |
|
| 103 |
::-webkit-scrollbar-track {
|
| 104 |
-
background:
|
| 105 |
border-radius: 8px;
|
| 106 |
}
|
| 107 |
|
| 108 |
::-webkit-scrollbar-thumb {
|
| 109 |
-
background: #
|
| 110 |
border-radius: 8px;
|
| 111 |
-
border: 1px solid
|
| 112 |
}
|
| 113 |
|
| 114 |
::-webkit-scrollbar-thumb:hover {
|
| 115 |
-
background: #
|
| 116 |
}
|
| 117 |
|
| 118 |
.custom-scrollbar::-webkit-scrollbar {
|
|
@@ -121,18 +126,18 @@
|
|
| 121 |
}
|
| 122 |
|
| 123 |
.custom-scrollbar::-webkit-scrollbar-track {
|
| 124 |
-
background:
|
| 125 |
border-radius: 8px;
|
| 126 |
}
|
| 127 |
|
| 128 |
.custom-scrollbar::-webkit-scrollbar-thumb {
|
| 129 |
-
background: #
|
| 130 |
border-radius: 8px;
|
| 131 |
-
border: 1px solid
|
| 132 |
}
|
| 133 |
|
| 134 |
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
| 135 |
-
background: #
|
| 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 |
|