@tutti-os/ui-system 0.0.246 → 0.0.248
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/styles/base.css +18 -8
- package/package.json +1 -1
package/dist/styles/base.css
CHANGED
|
@@ -175,21 +175,31 @@
|
|
|
175
175
|
}
|
|
176
176
|
}
|
|
177
177
|
|
|
178
|
-
.
|
|
178
|
+
.board-scroll {
|
|
179
179
|
scrollbar-width: thin;
|
|
180
|
-
scrollbar-color:
|
|
180
|
+
scrollbar-color: transparent transparent;
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
-
.
|
|
184
|
-
|
|
185
|
-
width: 8px;
|
|
183
|
+
.board-scroll:hover {
|
|
184
|
+
scrollbar-color: var(--transparency-hover) transparent;
|
|
186
185
|
}
|
|
187
186
|
|
|
188
|
-
.
|
|
187
|
+
.board-scroll::-webkit-scrollbar {
|
|
188
|
+
display: block !important;
|
|
189
|
+
height: 8px !important;
|
|
190
|
+
width: 8px !important;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.board-scroll::-webkit-scrollbar-track,
|
|
194
|
+
.board-scroll::-webkit-scrollbar-corner {
|
|
189
195
|
background: transparent;
|
|
190
196
|
}
|
|
191
197
|
|
|
192
|
-
.
|
|
198
|
+
.board-scroll::-webkit-scrollbar-thumb {
|
|
193
199
|
border-radius: 9999px;
|
|
194
|
-
background:
|
|
200
|
+
background: transparent;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.board-scroll:hover::-webkit-scrollbar-thumb {
|
|
204
|
+
background: var(--transparency-hover);
|
|
195
205
|
}
|