juxscript 1.1.238 → 1.1.240
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/lib/styles/shadcn.css +3 -2
- package/package.json +1 -1
package/lib/styles/shadcn.css
CHANGED
|
@@ -734,13 +734,14 @@ code {
|
|
|
734
734
|
.jux-hstack,
|
|
735
735
|
.jux-zstack {
|
|
736
736
|
display: flex;
|
|
737
|
+
width: 100%;
|
|
737
738
|
|
|
738
739
|
/* ✅ Use CSS variables from foundation/theme */
|
|
739
740
|
gap: var(--jux-gap, 1rem);
|
|
740
741
|
padding: var(--jux-pad, 0);
|
|
741
742
|
|
|
742
|
-
/* Default alignment */
|
|
743
|
-
align-items: var(--jux-align,
|
|
743
|
+
/* Default alignment — stretch so children fill cross-axis */
|
|
744
|
+
align-items: var(--jux-align, stretch);
|
|
744
745
|
}
|
|
745
746
|
|
|
746
747
|
/* ═════════════════════════════════════════════════════════════════
|