@plasmicpkgs/plasmic-rich-components 1.0.128 → 1.0.129
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.
|
@@ -2234,9 +2234,16 @@ const listCss = `
|
|
|
2234
2234
|
border-radius: 8px;
|
|
2235
2235
|
}
|
|
2236
2236
|
|
|
2237
|
-
/* Unsure why needed, but cards otherwise can be much narrower. */
|
|
2238
2237
|
.plasmic-list-item-card {
|
|
2238
|
+
/* Unsure why needed, but cards otherwise can be much narrower. */
|
|
2239
2239
|
width: 100%;
|
|
2240
|
+
/* For the body to fill the height, so all cards are the same height. */
|
|
2241
|
+
display: flex;
|
|
2242
|
+
flex-direction: column;
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2245
|
+
.plasmic-list-item-card > .ant-card-body {
|
|
2246
|
+
flex: 1;
|
|
2240
2247
|
}
|
|
2241
2248
|
|
|
2242
2249
|
.plasmic-list-item-card-cover {
|