diff options
author | 2022-01-29 12:58:10 +0100 | |
---|---|---|
committer | 2022-01-29 12:58:10 +0100 | |
commit | 783bb2af9c5b5940f0fa2d3a0d0cbd34ec7e1316 (patch) | |
tree | 9f03e3eb1543b54c63277c07ec37ba777540f190 /pydis_site/templates/resources | |
parent | Distill the resources page. (diff) |
Don't round edges of the filter category headers.
Diffstat (limited to 'pydis_site/templates/resources')
-rw-r--r-- | pydis_site/templates/resources/resources.html | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/pydis_site/templates/resources/resources.html b/pydis_site/templates/resources/resources.html index b82f16e1..411ae056 100644 --- a/pydis_site/templates/resources/resources.html +++ b/pydis_site/templates/resources/resources.html @@ -80,19 +80,19 @@ {# Filter checkboxes #} {% for filter_name, filter_data in filters.items %} - <div class="card"> - <button type="button" class="card-header collapsible"> - <span class="card-header-title subtitle is-6 my-2 ml-2"> - <i class="{{ filter_data.icon }} is-primary" aria-hidden="true"></i>  {{ filter_name }} - </span> - <span class="card-header-icon"> - {% if not filter_data.hidden %} - <i class="far fa-window-minimize is-6 title" aria-hidden="true"></i> - {% else %} - <i class="fas fa-angle-down is-6 title" aria-hidden="true"></i> - {% endif %} - </span> - </button> + <div class="card filter-category-header"> + <button type="button" class="card-header collapsible"> + <span class="card-header-title subtitle is-6 my-2 ml-2"> + <i class="{{ filter_data.icon }} is-primary" aria-hidden="true"></i>  {{ filter_name }} + </span> + <span class="card-header-icon"> + {% if not filter_data.hidden %} + <i class="far fa-window-minimize is-6 title" aria-hidden="true"></i> + {% else %} + <i class="fas fa-angle-down is-6 title" aria-hidden="true"></i> + {% endif %} + </span> + </button> {# Checkboxes #} {% if filter_data.hidden %} |