wynnbuilder-idk/items-wide.css

25 lines
411 B
CSS
Raw Normal View History

2021-01-24 03:58:53 +00:00
.items {
2021-01-24 10:09:59 +00:00
grid-column: 2;
2021-01-24 03:58:53 +00:00
padding: 0%;
display: grid;
2021-01-24 10:09:59 +00:00
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
2021-01-24 03:58:53 +00:00
width: 100%;
gap: 5px;
grid-template-rows: masonry;
}
2021-01-24 10:09:59 +00:00
.itemsearch {
padding: 0%;
display: grid;
grid-template-columns: 1fr 4fr;
width: 100%;
gap: 5px;
}
.search {
grid-column: 1;
position: sticky;
margin-bottom: auto;
top: 10px;
}