@spaethtech/svelte-ui 0.18.1-dev.89.42395d4 → 0.18.1-dev.90.ca4ea8f
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.
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
);
|
|
134
134
|
/** Inter-column gap. Tracks the same size axis so lead/cell/tail
|
|
135
135
|
* spacing stays proportional to cell padding. */
|
|
136
|
-
const cellGap = $derived(sSize === "lg" ? "gap-
|
|
136
|
+
const cellGap = $derived(sSize === "lg" ? "gap-6" : sSize === "md" ? "gap-4" : "gap-2");
|
|
137
137
|
|
|
138
138
|
const columns = $derived(grid.columns);
|
|
139
139
|
const hasLead = $derived(selectable || expandable || reorderable);
|
package/dist/theme.css
CHANGED
|
@@ -218,7 +218,7 @@ body {
|
|
|
218
218
|
@source inline("{,4xs:,3xs:,2xs:,xs:,sm:,md:,lg:,xl:,2xl:,3xl:}px-{1.5,2,2.5,3,4,5,6}");
|
|
219
219
|
@source inline("{,4xs:,3xs:,2xs:,xs:,sm:,md:,lg:,xl:,2xl:,3xl:}py-{0.5,1,1.5,2,2.5,3}");
|
|
220
220
|
@source inline("{,4xs:,3xs:,2xs:,xs:,sm:,md:,lg:,xl:,2xl:,3xl:}{pt,pb}-{2,3,4}");
|
|
221
|
-
@source inline("{,4xs:,3xs:,2xs:,xs:,sm:,md:,lg:,xl:,2xl:,3xl:}gap-{1.5,2,3}");
|
|
221
|
+
@source inline("{,4xs:,3xs:,2xs:,xs:,sm:,md:,lg:,xl:,2xl:,3xl:}gap-{1.5,2,3,4,6}");
|
|
222
222
|
@source inline("{,4xs:,3xs:,2xs:,xs:,sm:,md:,lg:,xl:,2xl:,3xl:}text-{xs,sm,base,lg,2xl}");
|
|
223
223
|
@source inline("{,4xs:,3xs:,2xs:,xs:,sm:,md:,lg:,xl:,2xl:,3xl:}[&_svg]:{w,h}-{3.5,4,5,6}");
|
|
224
224
|
/* FieldGroup `columns` → responsive grid tracks (auto-placed cells). */
|