juxscript 1.1.226 → 1.1.227
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 +7 -9
- package/package.json +1 -1
package/lib/styles/shadcn.css
CHANGED
|
@@ -186,22 +186,20 @@ p { line-height: 1.75; color: hsl(var(--foreground)); }
|
|
|
186
186
|
flex-direction: column;
|
|
187
187
|
align-items: flex-start;
|
|
188
188
|
gap: 0.5rem;
|
|
189
|
-
padding:
|
|
190
|
-
background:
|
|
191
|
-
border:
|
|
192
|
-
border-radius:
|
|
189
|
+
padding: 0.5rem;
|
|
190
|
+
background: transparent;
|
|
191
|
+
border: none;
|
|
192
|
+
border-radius: 0;
|
|
193
193
|
transition: all 0.2s;
|
|
194
194
|
}
|
|
195
195
|
|
|
196
196
|
.jux-dataframe-upload-area:hover {
|
|
197
|
-
background:
|
|
198
|
-
border-color: hsl(var(--muted-foreground) / 0.3);
|
|
197
|
+
background: transparent;
|
|
199
198
|
}
|
|
200
199
|
|
|
201
200
|
.jux-dataframe-upload-area:has(.jux-fileupload-filelist:not(:empty)) {
|
|
202
|
-
background:
|
|
203
|
-
border
|
|
204
|
-
border-style: solid;
|
|
201
|
+
background: transparent;
|
|
202
|
+
border: none;
|
|
205
203
|
}
|
|
206
204
|
|
|
207
205
|
.jux-dataframe-upload {
|