diff options
| author | 2024-02-03 00:50:43 -0800 | |
|---|---|---|
| committer | 2024-02-03 00:50:43 -0800 | |
| commit | ad2410ef24e97742bc22f0d8775a0f37a5bf2db5 (patch) | |
| tree | cce3c380e6b695d11dcb65ee65411f6f654e2be3 /pydis_site/templates/content | |
| parent | Migrate mailing lists to their own API endpoints (diff) | |
| parent | Merge pull request #1220 from python-discord/dependabot/pip/ruff-0.2.0 (diff) | |
Merge branch 'main' into mailing-list-model
Diffstat (limited to 'pydis_site/templates/content')
| -rw-r--r-- | pydis_site/templates/content/listing.html | 4 | ||||
| -rw-r--r-- | pydis_site/templates/content/page.html | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/pydis_site/templates/content/listing.html b/pydis_site/templates/content/listing.html index bbdd54b0..e2c27b17 100644 --- a/pydis_site/templates/content/listing.html +++ b/pydis_site/templates/content/listing.html @@ -18,7 +18,7 @@ {% block page_content %} {# Nested Categories #} {% for category, data in categories.items %} - <div class="box" style="max-width: 800px;"> + <div class="box has-background-white" style="max-width: 800px;"> <span class="icon is-size-4 is-medium"> <i class="{{ data.icon|default:"fas fa-folder" }} is-size-3 is-black has-icon-padding" aria-hidden="true"></i> </span> @@ -32,7 +32,7 @@ {# Single Pages #} {% for page, data in pages.items %} - <div class="box" style="max-width: 800px;"> + <div class="box has-background-white" style="max-width: 800px;"> <span class="icon is-size-4 is-medium"> <i class="{{ data.icon|default:"fab fa-python" }} is-size-3 is-black has-icon-padding" aria-hidden="true"></i> </span> diff --git a/pydis_site/templates/content/page.html b/pydis_site/templates/content/page.html index 679ecec6..0d7087dd 100644 --- a/pydis_site/templates/content/page.html +++ b/pydis_site/templates/content/page.html @@ -8,7 +8,7 @@ </div> <div class="column"> {% if toc %} - <div class="box"> + <div class="box has-background-white-bis"> <p class="menu-label">Table of Contents</p> <ul class="menu-list toc"> {{ toc|safe }} |