diff options
author | Matthew Lemon <y@yulqen.org> | 2024-09-01 19:55:34 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-09-01 19:55:34 +0100 |
commit | 597a67f1d4c0a9b77d351cc1e1fe07f53d9f388d (patch) | |
tree | 390681e7311318b9f48e4926adf440f499687a24 /pyblackbird_cc/templates/resources/resource_list.html | |
parent | c763111cdc6bcba0138886fa8ad7945f9688431b (diff) |
Drop shadows on the featured and standard resource panels
Diffstat (limited to '')
-rw-r--r-- | pyblackbird_cc/templates/resources/resource_list.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pyblackbird_cc/templates/resources/resource_list.html b/pyblackbird_cc/templates/resources/resource_list.html index fce5f60..cfe5ba3 100644 --- a/pyblackbird_cc/templates/resources/resource_list.html +++ b/pyblackbird_cc/templates/resources/resource_list.html @@ -6,7 +6,9 @@ {% endblock title %} {% block content %} - {% include "resources/admin_bar.html" %} + <div class="row my-4"> + {% include "resources/admin_bar.html" %} + </div> {# featured resources #} {% if featured_resources %} @@ -41,7 +43,7 @@ <div class="d-flex flex-row flex-wrap"> {% for resource in resource_list %} - {% include "resources/resource_card_standard.html" with resource=resource %} + {% include "resources/resource_card_standard.html" with resource=resource %} {% endfor %} </div> {% else %} |