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

View File

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