Do not hide buttons on narrow screens – might be ugly but I need those buttons

This commit is contained in:
Kumi 2021-01-08 12:03:41 +01:00
parent dee6be0b88
commit 27a19758f3

View file

@ -17,7 +17,7 @@
<h1 class="h3 mb-2 text-gray-800">{{ title }}</h1>
<div>
{% for button in buttons %}
<a href="{{ button.0 }}" class="d-none d-sm-inline-block btn btn-sm btn-primary shadow-sm"><i class="fas fa-{{ button.2 }} fa-sm text-white-50"></i> {{ button.1 }}</a>
<a href="{{ button.0 }}" class="d-sm-inline-block btn btn-sm btn-primary shadow-sm"><i class="fas fa-{{ button.2 }} fa-sm text-white-50"></i> {{ button.1 }}</a>
{% endfor %}
</div>
</div>