juxscript 1.1.222 → 1.1.223
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 +9 -3
- package/package.json +1 -1
package/lib/styles/shadcn.css
CHANGED
|
@@ -158,9 +158,15 @@ p { line-height: 1.75; color: hsl(var(--foreground)); }
|
|
|
158
158
|
flex-direction: column;
|
|
159
159
|
gap: 1rem;
|
|
160
160
|
width: 100%;
|
|
161
|
-
min-width: 0;
|
|
162
|
-
max-width: 100%;
|
|
163
|
-
overflow: hidden;
|
|
161
|
+
min-width: 0;
|
|
162
|
+
max-width: 100%;
|
|
163
|
+
overflow: hidden;
|
|
164
|
+
/* ✅ Card-like container to visually partition each dataframe */
|
|
165
|
+
padding: 1rem;
|
|
166
|
+
border: 1px solid hsl(var(--border));
|
|
167
|
+
border-radius: var(--radius);
|
|
168
|
+
background: hsl(var(--background));
|
|
169
|
+
box-shadow: 0 1px 3px hsl(0 0% 0% / 0.04);
|
|
164
170
|
}
|
|
165
171
|
|
|
166
172
|
/* ✅ Ensure table respects dataframe container */
|