wynnbuilder-forked-for-changes/items-narrow.css

22 lines
331 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: 1;
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-fill, 1fr);
2021-01-24 03:58:53 +00:00
width: 100%;
gap: 5px;
}
2021-01-24 10:09:59 +00:00
.itemsearch {
padding: 0%;
display: grid;
grid-template-columns: 1fr;
width: 100%;
gap: 5px;
grid-template-rows: masonry;
}
.search {
grid-column: 1;
}