11 lines
187 B
SCSS
11 lines
187 B
SCSS
|
.grid {
|
||
|
padding: 10px;
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
|
||
|
|
||
|
gap: 10px;
|
||
|
height: 100%;
|
||
|
box-sizing: border-box;
|
||
|
overflow-y: scroll;
|
||
|
}
|