mirror of https://github.com/snachodog/mybuddy.git
Hide child edit and delete buttons on small screens
Prevents weird spacing issues and line breaks between buttons on small phones. Closes #298
This commit is contained in:
parent
53f249d1af
commit
0b0efc6b8d
|
@ -32,14 +32,14 @@
|
|||
</div>
|
||||
|
||||
{% if perms.core.change_child %}
|
||||
<a class="btn"
|
||||
<a class="btn d-none d-md-inline-block"
|
||||
href="{% url 'core:child-update' object.slug %}"
|
||||
title="{% trans "Edit" %}"
|
||||
role="button"><i class="icon-update" aria-hidden="true"></i></a>
|
||||
{% endif %}
|
||||
|
||||
{% if perms.core.delete_child %}
|
||||
<a class="btn"
|
||||
<a class="btn d-none d-md-inline-block"
|
||||
href="{% url 'core:child-delete' object.slug %}"
|
||||
title="{% trans "Delete" %}"
|
||||
role="button"><i class="icon-delete" aria-hidden="true"></i></a>
|
||||
|
|
Loading…
Reference in New Issue