Improve readiability on donation bar.

This commit is contained in:
2025-07-31 15:27:55 +02:00
parent aa0a383b9c
commit ef288d565b

View File

@@ -100,11 +100,17 @@
</main> </main>
{% if not is_image_mode %} {% if not is_image_mode %}
<footer class="mt-auto p-6 text-center"> <footer class="mt-8 text-center">
<div class="flex items-center justify-center gap-2"> <div class="flex items-center justify-center gap-2">
<img src="{{ url_for('static', filename='dogecoin_logo.png') }}" alt="Doge" class="w-5 h-5"> <img src="{{ url_for('static', filename='dogecoin_logo.png') }}" alt="Doge" class="w-6 h-6">
<span class="text-sm text-slate-500">Support this service with Dogecoin: <code
class="text-xs bg-slate-800 p-1 rounded">DRTLo2BsBijY4MrLmNNHzmjZ5tVvpTebFE</code></span> <!-- text-base makes the text larger -->
<span class="text-base text-slate-400">
Support this service:
<!-- text-sm and p-2 make the code block larger -->
<code
class="text-sm bg-slate-800 p-2 rounded-lg text-slate-300">DRTLo2BsBijY4MrLmNNHzmjZ5tVvpTebFE</code>
</span>
</div> </div>
</footer> </footer>
{% endif %} {% endif %}