12 lines
No EOL
194 B
SCSS
12 lines
No EOL
194 B
SCSS
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, 200px);
|
|
justify-content: center;
|
|
column-gap: 30px;
|
|
row-gap: 15px;
|
|
}
|
|
|
|
.container {
|
|
margin: 0 auto;
|
|
max-width: 1200px
|
|
} |