Skip to Main Content
CSS Notes Case statement in where clasue

Card Uniform Size

Maintain the same size of a card regardless of the text size.

Example

.rw-Cards-item {
  --rw-card-min-width: 100%;
  display: flex;
  flex-direction: column;
}
.rw-Card {
  flex-grow: 1;
}
.rw-Card-content {
  grid-template-rows: minmax(auto, min-content);
}