summaryrefslogtreecommitdiff
path: root/website/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'website/templates/base.html')
-rw-r--r--website/templates/base.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/website/templates/base.html b/website/templates/base.html
index 5745db3..8306ac7 100644
--- a/website/templates/base.html
+++ b/website/templates/base.html
@@ -52,7 +52,7 @@
<a class="transition duration-500 hover:scale-110"
href="{{ get_url(path='/') | safe }}"
aria-hidden="true">
- <img class="m-0 w-12 h-12"
+ <img class="w-12 h-12"
src="{{ get_url(path=config.extra.logo_path) | safe }}"
alt="">
</a>
@@ -68,17 +68,17 @@
{% block content %}{% endblock %}
</main>
- <footer class="pt-2 pb-1 mt-auto text-center">
- <div class="mx-auto inline-flex gap-x-1.5 items-center">
+ <footer class="pt-2 pb-1 mt-auto text-center text-sm">
+ <div class="mt-2 mx-auto inline-flex gap-x-1.5 items-center">
<img class="w-8 h-8"
src="{{ get_url(path='images/rust_logo.svg') | safe }}"
alt="">
- <div class="text-sm italic">Rustlings is an official Rust project</div>
+ <div class="italic">Rustlings is an official Rust project</div>
</div>
- <nav class="flex flex-col gap-y-3 justify-around py-3 bg-black/30 rounded-sm sm:flex-row sm:rounded-full">
+ <nav class="mt-3 flex flex-col gap-y-3 justify-around py-3 bg-black/30 rounded-sm sm:flex-row sm:rounded-full">
{% for footer_item in config.extra.footer_items %}
- <a class="text-sm no-underline" href="{{ footer_item.url | safe }}">{{ footer_item.name }}</a>
+ <a class="no-underline" href="{{ footer_item.url | safe }}">{{ footer_item.name }}</a>
{% endfor %}
</nav>
</footer>