@plasmicpkgs/plasmic-rich-components 1.0.128 → 1.0.130

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/index.js CHANGED
@@ -2248,9 +2248,16 @@ const listCss = `
2248
2248
  border-radius: 8px;
2249
2249
  }
2250
2250
 
2251
- /* Unsure why needed, but cards otherwise can be much narrower. */
2252
2251
  .plasmic-list-item-card {
2252
+ /* Unsure why needed, but cards otherwise can be much narrower. */
2253
2253
  width: 100%;
2254
+ /* For the body to fill the height, so all cards are the same height. */
2255
+ display: flex;
2256
+ flex-direction: column;
2257
+ }
2258
+
2259
+ .plasmic-list-item-card > .ant-card-body {
2260
+ flex: 1;
2254
2261
  }
2255
2262
 
2256
2263
  .plasmic-list-item-card-cover {