@proveanything/smartlinks-utils-ui 0.12.4 → 0.12.5
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/components/AssetPicker/index.css +15 -0
- package/dist/components/AssetPicker/index.css.map +1 -1
- package/dist/components/ConditionsEditor/index.css +15 -0
- package/dist/components/ConditionsEditor/index.css.map +1 -1
- package/dist/components/FontPicker/index.css +15 -0
- package/dist/components/FontPicker/index.css.map +1 -1
- package/dist/components/IconPicker/index.css +15 -0
- package/dist/components/IconPicker/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.css +15 -0
- package/dist/components/RecordsAdmin/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.d.ts +8 -0
- package/dist/components/RecordsAdmin/index.js +370 -32
- package/dist/components/RecordsAdmin/index.js.map +1 -1
- package/dist/index.css +15 -0
- package/dist/index.css.map +1 -1
- package/package.json +1 -1
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
.z-50 {
|
|
99
99
|
z-index: 50;
|
|
100
100
|
}
|
|
101
|
+
.z-\[1000\] {
|
|
102
|
+
z-index: 1000;
|
|
103
|
+
}
|
|
101
104
|
.col-span-2 {
|
|
102
105
|
grid-column: span 2 / span 2;
|
|
103
106
|
}
|
|
@@ -129,6 +132,9 @@
|
|
|
129
132
|
.mb-1 {
|
|
130
133
|
margin-bottom: 0.25rem;
|
|
131
134
|
}
|
|
135
|
+
.mb-1\.5 {
|
|
136
|
+
margin-bottom: 0.375rem;
|
|
137
|
+
}
|
|
132
138
|
.mb-2 {
|
|
133
139
|
margin-bottom: 0.5rem;
|
|
134
140
|
}
|
|
@@ -264,6 +270,9 @@
|
|
|
264
270
|
.max-h-\[85vh\] {
|
|
265
271
|
max-height: 85vh;
|
|
266
272
|
}
|
|
273
|
+
.max-h-\[min\(36rem\,calc\(100vh-2rem\)\)\] {
|
|
274
|
+
max-height: min(36rem, calc(100vh - 2rem));
|
|
275
|
+
}
|
|
267
276
|
.min-h-0 {
|
|
268
277
|
min-height: 0px;
|
|
269
278
|
}
|
|
@@ -309,6 +318,9 @@
|
|
|
309
318
|
.w-9 {
|
|
310
319
|
width: 2.25rem;
|
|
311
320
|
}
|
|
321
|
+
.w-\[min\(28rem\,calc\(100vw-2rem\)\)\] {
|
|
322
|
+
width: min(28rem, calc(100vw - 2rem));
|
|
323
|
+
}
|
|
312
324
|
.w-full {
|
|
313
325
|
width: 100%;
|
|
314
326
|
}
|
|
@@ -472,6 +484,9 @@
|
|
|
472
484
|
.gap-2 {
|
|
473
485
|
gap: 0.5rem;
|
|
474
486
|
}
|
|
487
|
+
.gap-2\.5 {
|
|
488
|
+
gap: 0.625rem;
|
|
489
|
+
}
|
|
475
490
|
.gap-3 {
|
|
476
491
|
gap: 0.75rem;
|
|
477
492
|
}
|