diff --git a/backend/reviews/templates/grants-recap.html b/backend/reviews/templates/grants-recap.html index 4dd7b33449..bf44072143 100644 --- a/backend/reviews/templates/grants-recap.html +++ b/backend/reviews/templates/grants-recap.html @@ -202,16 +202,44 @@ list-style: square; } - .opt-filter { - display: grid; - gap: 10px; - grid-template-columns: max-content auto; - align-items: center; + .filters-grid { + display: flex; + flex-wrap: wrap; + gap: 16px; margin-top: 10px; } - .opt-filter label + label { - margin-left: 10px; + .filter-group { + display: flex; + flex-direction: column; + gap: 6px; + min-width: 180px; + } + + .filter-group-label { + font-size: 12px; + font-weight: 600; + color: var(--body-quiet-color, #666); + text-transform: uppercase; + letter-spacing: 0.3px; + margin: 0; + white-space: nowrap; + } + + .filter-group-options { + display: flex; + flex-wrap: wrap; + gap: 4px 12px; + align-items: center; + } + + .filter-group-options label { + display: inline-flex; + align-items: center; + gap: 4px; + font-size: 13px; + cursor: pointer; + white-space: nowrap; } tr:nth-of-type(odd) { @@ -634,23 +662,22 @@