@namba_one/ui-kit-2 1.0.160 → 1.0.162
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/index.es.js +2351 -2348
- package/dist/index.umd.js +14 -14
- package/dist/scss/mixins.scss +5 -5
- package/package.json +1 -1
package/dist/scss/mixins.scss
CHANGED
|
@@ -231,18 +231,18 @@ $weights: (
|
|
|
231
231
|
@mixin custom-scrollbar {
|
|
232
232
|
@include media-hover-device {
|
|
233
233
|
&::-webkit-scrollbar {
|
|
234
|
-
width: rem(
|
|
235
|
-
height: rem(
|
|
234
|
+
width: rem(2);
|
|
235
|
+
height: rem(2);
|
|
236
236
|
}
|
|
237
237
|
|
|
238
238
|
&::-webkit-scrollbar-track {
|
|
239
239
|
background-color: transparent;
|
|
240
|
-
border-radius:
|
|
240
|
+
border-radius: var(--border-radius-full);
|
|
241
241
|
}
|
|
242
242
|
|
|
243
243
|
&::-webkit-scrollbar-thumb {
|
|
244
|
-
background-color: var(--
|
|
245
|
-
border-radius:
|
|
244
|
+
background-color: var(--background-interactive-scroll-primary-t);
|
|
245
|
+
border-radius: var(--border-radius-full);
|
|
246
246
|
}
|
|
247
247
|
}
|
|
248
248
|
}
|