File size: 227 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
.link-card-list {
--ifm-list-item-margin: 0;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 16px;
margin: 0;
padding: 0;
list-style: none;
}
.link-card-list__card {
height: 100%;
}
|