diff options
author | 2022-06-18 19:41:24 -0400 | |
---|---|---|
committer | 2022-06-18 19:41:24 -0400 | |
commit | d62ce6f8b4fe18e0b31e783d6009ac6f94a6ec9c (patch) | |
tree | f731696c8099764b0a1992a3da78187929acb431 | |
parent | Merge pull request #723 from python-discord/cj9_info (diff) |
Hotfix: Fit button size to mobile screens.
Unfortunately, responsive buttons land in 0.9.4 so until
django-simple-bulma has that we can settle for a slightly less
eye-catching button.
-rw-r--r-- | pydis_site/templates/events/pages/code-jams/_index.html | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/pydis_site/templates/events/pages/code-jams/_index.html b/pydis_site/templates/events/pages/code-jams/_index.html index 04e01a24..6c21233c 100644 --- a/pydis_site/templates/events/pages/code-jams/_index.html +++ b/pydis_site/templates/events/pages/code-jams/_index.html @@ -8,14 +8,17 @@ {% block title %}Code Jams{% endblock %} {% block event_content %} - <div class="buttons are-large is-centered"> - <a href="9/_index" class="button is-primary"> - <span>Code Jam 2022 is Coming Up This July!</span> - <span class="icon"> - <i class="fas fa-arrow-right"></i> + <div class="block"> + <a href="9/_index" class="button is-primary mt-1"> + <span class="icon-text"> + <span>Code Jam 2022 is Coming This July!</span> + <span class="icon"> + <i class="fas fa-arrow-right"></i> + </span> </span> </a> </div> + <p> If you've been around the server for a while, or you just happened to join at the right time, you may have heard of something known as a Code Jam. |