cards with overflow

This commit is contained in:
Hazel Noack 2025-07-10 14:22:24 +02:00
parent 27adda431f
commit 089b9ba218
2 changed files with 6 additions and 2 deletions

View File

@ -26,7 +26,7 @@ body {
display: grid; display: grid;
gap: 5em; gap: 5em;
grid-template-rows: 10em 4em; grid-template-rows: 10em 4em 15em;
} }
.search { .search {
@ -60,10 +60,14 @@ body {
} }
.store-cards { .store-cards {
height: 100%;
width: 100%;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
justify-content: space-around; justify-content: space-around;
flex-wrap: wrap;
gap: 1em; gap: 1em;
overflow: auto;
} }
.card { .card {

View File

@ -41,7 +41,7 @@ func DefaultRenderingConfig() RenderingConfig {
SearchInputName: "q", SearchInputName: "q",
StoreFilter: diyhrt.StoreFilter{ StoreFilter: diyhrt.StoreFilter{
Limit: 4, Limit: 0,
IncludeIds: []int{7}, IncludeIds: []int{7},
}, },
} }