impaktapps-ui-builder 1.0.9-4.card.1 → 1.0.9-4.card.3
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/dist/impaktapps-ui-builder.es.js +13 -6
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +9 -2
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +13 -5
|
@@ -11306,7 +11306,8 @@ function Card(theme) {
|
|
|
11306
11306
|
width: "100%",
|
|
11307
11307
|
height: "inherit",
|
|
11308
11308
|
background: "transparent",
|
|
11309
|
-
borderRadius: "0px"
|
|
11309
|
+
borderRadius: "0px",
|
|
11310
|
+
paddingRight: 0
|
|
11310
11311
|
},
|
|
11311
11312
|
layout: 12
|
|
11312
11313
|
},
|
|
@@ -11332,8 +11333,7 @@ function Card(theme) {
|
|
|
11332
11333
|
marginLeft: "-10px",
|
|
11333
11334
|
marginTop: "-8px",
|
|
11334
11335
|
justifyContent: "start",
|
|
11335
|
-
position: "relative"
|
|
11336
|
-
padding: 0
|
|
11336
|
+
position: "relative"
|
|
11337
11337
|
},
|
|
11338
11338
|
layout: 12
|
|
11339
11339
|
},
|
|
@@ -11399,11 +11399,18 @@ function Card(theme) {
|
|
|
11399
11399
|
color: "black",
|
|
11400
11400
|
fontSize: "16px",
|
|
11401
11401
|
justifyContent: "center",
|
|
11402
|
-
|
|
11402
|
+
whiteSpace: "nowrap",
|
|
11403
|
+
overflowX: "auto",
|
|
11404
|
+
overflowY: "hidden",
|
|
11405
|
+
scrollbarWidth: "none",
|
|
11406
|
+
msOverflowStyle: "none",
|
|
11403
11407
|
background: "inherit",
|
|
11404
|
-
width: "calc(100
|
|
11408
|
+
width: "calc(100% + 8px)",
|
|
11405
11409
|
margin: "-8px",
|
|
11406
|
-
marginTop: { xs: "16px", md: "20px" }
|
|
11410
|
+
marginTop: { xs: "16px", md: "20px" },
|
|
11411
|
+
"&::-webkit-scrollbar": {
|
|
11412
|
+
display: "none"
|
|
11413
|
+
}
|
|
11407
11414
|
},
|
|
11408
11415
|
layout: 12
|
|
11409
11416
|
},
|