@geomak/ui 6.29.2 → 6.30.0
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.cjs +17 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +18 -12
- package/dist/index.js.map +1 -1
- package/dist/styles.css +31 -3
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -732,6 +732,34 @@ video {
|
|
|
732
732
|
--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5), 0 3px 8px rgba(0, 0, 0, 0.3);
|
|
733
733
|
--shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.6), 0 6px 16px rgba(0, 0, 0, 0.35);
|
|
734
734
|
}
|
|
735
|
+
* {
|
|
736
|
+
scrollbar-width: thin;
|
|
737
|
+
scrollbar-color: var(--color-border-strong) transparent;
|
|
738
|
+
}
|
|
739
|
+
*::-webkit-scrollbar {
|
|
740
|
+
width: 10px;
|
|
741
|
+
height: 10px;
|
|
742
|
+
}
|
|
743
|
+
*::-webkit-scrollbar-track {
|
|
744
|
+
background: transparent;
|
|
745
|
+
}
|
|
746
|
+
*::-webkit-scrollbar-thumb {
|
|
747
|
+
background-color: var(--color-border-strong);
|
|
748
|
+
border: 2px solid transparent;
|
|
749
|
+
background-clip: padding-box;
|
|
750
|
+
border-radius: 9999px;
|
|
751
|
+
}
|
|
752
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
753
|
+
background-color: var(--color-foreground-muted);
|
|
754
|
+
}
|
|
755
|
+
*::-webkit-scrollbar-button {
|
|
756
|
+
display: none;
|
|
757
|
+
width: 0;
|
|
758
|
+
height: 0;
|
|
759
|
+
}
|
|
760
|
+
*::-webkit-scrollbar-corner {
|
|
761
|
+
background: transparent;
|
|
762
|
+
}
|
|
735
763
|
.container {
|
|
736
764
|
width: 100%;
|
|
737
765
|
}
|
|
@@ -1191,6 +1219,9 @@ video {
|
|
|
1191
1219
|
.h-\[3px\] {
|
|
1192
1220
|
height: 3px;
|
|
1193
1221
|
}
|
|
1222
|
+
.h-\[4\.5rem\] {
|
|
1223
|
+
height: 4.5rem;
|
|
1224
|
+
}
|
|
1194
1225
|
.h-\[400px\] {
|
|
1195
1226
|
height: 400px;
|
|
1196
1227
|
}
|
|
@@ -1234,9 +1265,6 @@ video {
|
|
|
1234
1265
|
.max-h-72 {
|
|
1235
1266
|
max-height: 18rem;
|
|
1236
1267
|
}
|
|
1237
|
-
.max-h-\[120px\] {
|
|
1238
|
-
max-height: 120px;
|
|
1239
|
-
}
|
|
1240
1268
|
.max-h-\[90dvh\] {
|
|
1241
1269
|
max-height: 90dvh;
|
|
1242
1270
|
}
|
package/package.json
CHANGED