diff options
author | 2022-02-08 23:20:18 +0000 | |
---|---|---|
committer | 2022-02-08 23:20:18 +0000 | |
commit | f8072eeab1ce0e420673830714ea8d0928b98aa2 (patch) | |
tree | 9e8dfb4287eb1e931858b28c5e7f29987b823d60 | |
parent | Set dark theme colour values (diff) |
Use colour helpers
-rw-r--r-- | pydis_site/templates/base/navbar.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pydis_site/templates/base/navbar.html b/pydis_site/templates/base/navbar.html index fbaea337..4e9cb651 100644 --- a/pydis_site/templates/base/navbar.html +++ b/pydis_site/templates/base/navbar.html @@ -33,38 +33,38 @@ </a> {# GitHub #} - <a class="navbar-item has-text-white" href="https://github.com/python-discord"> + <a class="navbar-item" href="https://github.com/python-discord"> <span class="icon is-size-4 is-medium"><i class="fab fa-github"></i></span> <span> GitHub</span> </a> {# Reddit #} - <a class="navbar-item has-text-white" href="https://reddit.com/r/python"> + <a class="navbar-item" href="https://reddit.com/r/python"> <span class="icon is-size-4 is-medium"><i class="fab fa-reddit-alien"></i></span> <span> Reddit</span> </a> {# YouTube #} - <a class="navbar-item has-text-white" href="https://youtube.com/pythondiscord"> + <a class="navbar-item" href="https://youtube.com/pythondiscord"> <span class="icon is-size-4 is-medium is-dark"><i class="fab fa-youtube"></i></span> <span> YouTube</span> </a> {# Patreon #} - <a class="navbar-item has-text-white" href="https://patreon.com/python_discord"> + <a class="navbar-item" href="https://patreon.com/python_discord"> <span class="icon is-size-4 is-medium"><i class="fab fa-patreon"></i></span> <span> Patreon</span> </a> {# Merch #} - <a class="navbar-item has-text-white" href="https://www.redbubble.com/people/PythonDiscord/shop"> + <a class="navbar-item" href="https://www.redbubble.com/people/PythonDiscord/shop"> <span class="icon is-size-4 is-medium"><i class="fas fa-tshirt"></i></span> <span> Merch</span> </a> {# More #} <div class="navbar-item has-dropdown is-hoverable"> - <span class="navbar-link is-hidden-touch has-text-white"> + <span class="navbar-link is-hidden-touch"> More </span> <span class="navbar-link is-arrowless is-hidden-desktop"> |