Added grid rule to prevent row gaps on large screens.

This commit is contained in:
2026-07-24 00:33:56 +02:00
parent e46f174a1e
commit b86cf8e30f
5 changed files with 6 additions and 1 deletions

View File

@@ -303,6 +303,7 @@ function updateFilter(prop, value, reload = true) {
display: grid;
flex-grow: 1;
grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
grid-auto-rows: max-content; /* prevent row gaps on large screens */
gap: .25rem;
}