6 lines
133 B
CSS
6 lines
133 B
CSS
|
.link-card-grid {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(auto-fit, minmax(24ch, 1fr));
|
||
|
gap: 2rem;
|
||
|
padding: 0;
|
||
|
}
|