@innertia-solutions/nuxt-theme-spark 0.1.136 → 0.1.138
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/package.json +1 -1
- package/spark.css +22 -0
package/package.json
CHANGED
package/spark.css
CHANGED
|
@@ -659,6 +659,28 @@
|
|
|
659
659
|
|
|
660
660
|
/* ─── Base styles ───────────────────────────────────────────── */
|
|
661
661
|
@layer base {
|
|
662
|
+
html {
|
|
663
|
+
scrollbar-gutter: stable;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
::-webkit-scrollbar {
|
|
667
|
+
width: 6px;
|
|
668
|
+
height: 6px;
|
|
669
|
+
}
|
|
670
|
+
::-webkit-scrollbar-track {
|
|
671
|
+
background: var(--scrollbar-track);
|
|
672
|
+
}
|
|
673
|
+
::-webkit-scrollbar-thumb {
|
|
674
|
+
background: var(--scrollbar-thumb);
|
|
675
|
+
border-radius: 9999px;
|
|
676
|
+
}
|
|
677
|
+
::-webkit-scrollbar-thumb:hover {
|
|
678
|
+
background: var(--muted-foreground-2);
|
|
679
|
+
}
|
|
680
|
+
::-webkit-scrollbar-corner {
|
|
681
|
+
background: var(--scrollbar-track);
|
|
682
|
+
}
|
|
683
|
+
|
|
662
684
|
button:not(:disabled),
|
|
663
685
|
[role="button"]:not(:disabled) {
|
|
664
686
|
cursor: pointer;
|