@wise/dynamic-flow-client 3.0.2 → 3.1.0-beta-c06da4.35

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/build/main.css CHANGED
@@ -192,3 +192,72 @@
192
192
  max-width: 600px;
193
193
  }
194
194
  }
195
+ /* We should move to CSS modules when we move this to the Wise layer */
196
+ .df-box-renderer-border {
197
+ border: 1px solid var(--color-border-neutral);
198
+ border-radius: var(--radius-small);
199
+ padding: var(--size-16);
200
+ }
201
+ .df-box-renderer-fixed-width {
202
+ display: flex;
203
+ justify-content: center;
204
+ }
205
+ .df-box-renderer-width-xs,
206
+ .df-box-renderer-width-sm,
207
+ .df-box-renderer-width-md,
208
+ .df-box-renderer-width-lg {
209
+ width: 100%;
210
+ }
211
+ @media screen and (width >= 768px) {
212
+ .df-box-renderer-width-xs {
213
+ width: 33.33%;
214
+ }
215
+
216
+ .df-box-renderer-width-sm {
217
+ width: 50%;
218
+ }
219
+
220
+ .df-box-renderer-width-md {
221
+ width: 66.66%;
222
+ }
223
+
224
+ .df-box-renderer-width-lg {
225
+ width: 83.33%;
226
+ }
227
+ }
228
+ @media screen and (width >= 990px) {
229
+ .df-box-renderer-width-xs {
230
+ width: 25%;
231
+ }
232
+
233
+ .df-box-renderer-width-sm {
234
+ width: 33.33%;
235
+ }
236
+
237
+ .df-box-renderer-width-md {
238
+ width: 50%;
239
+ }
240
+
241
+ .df-box-renderer-width-lg {
242
+ width: 66.66%;
243
+ }
244
+ }
245
+ .df-columns-renderer-container {
246
+ display: flex;
247
+ gap: var(--size-16);
248
+ flex-direction: column;
249
+ }
250
+ .df-columns-renderer-column,
251
+ .df-columns-renderer-bias-start .df-columns-renderer-column:nth-child(2),
252
+ .df-columns-renderer-bias-end .df-columns-renderer-column:nth-child(1) {
253
+ flex: 1;
254
+ }
255
+ .df-columns-renderer-bias-start .df-columns-renderer-column:nth-child(1),
256
+ .df-columns-renderer-bias-end .df-columns-renderer-column:nth-child(2) {
257
+ flex: 2;
258
+ }
259
+ @media (width >= 768px) {
260
+ .df-columns-renderer-container {
261
+ flex-direction: row;
262
+ }
263
+ }