18 lines
414 B
CSS
18 lines
414 B
CSS
|
|
.layer {
|
||
|
|
height: 100%;
|
||
|
|
place-content: space-between;
|
||
|
|
place-items: stretch;
|
||
|
|
display: grid;
|
||
|
|
gap: 10px;
|
||
|
|
grid-auto-rows: minmax(200px, auto);
|
||
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, auto));
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.where_item {
|
||
|
|
justify-content: space-between;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
flex-direction: row;
|
||
|
|
width: 100%;
|
||
|
|
border-radius: 10px;
|
||
|
|
background: #F0F0F524;
|
||
|
|
}
|