Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Update frontend/src/index.css
Browse files- 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 |
-
/*
|
| 104 |
* {
|
| 105 |
-
|
| 106 |
-
scrollbar-
|
| 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
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
}
|
| 124 |
|
| 125 |
-
|
| 126 |
-
|
|
|
|
|
|
|
| 127 |
}
|
| 128 |
|
| 129 |
.custom-scrollbar::-webkit-scrollbar {
|
| 130 |
-
|
| 131 |
-
|
|
|
|
| 132 |
}
|
| 133 |
|
| 134 |
.custom-scrollbar::-webkit-scrollbar-track {
|
| 135 |
-
background:
|
| 136 |
-
border-radius: 8px;
|
| 137 |
}
|
| 138 |
|
| 139 |
.custom-scrollbar::-webkit-scrollbar-thumb {
|
| 140 |
-
background:
|
| 141 |
-
border-radius:
|
| 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 |
+
|