5 lines
102 B
CSS
5 lines
102 B
CSS
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(500px, max-content));
|
|
}
|