wireguard: Show large buttons in show client/server pages

- To be consistent with other such pages.

- Larger buttons are more accessible, since they are the only operations on the
  page.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2019-10-30 14:31:44 -07:00 committed by James Valleroy
parent 0bef87579f
commit 6a2942a9c4
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808
2 changed files with 4 additions and 4 deletions

View File

@ -37,11 +37,11 @@
<p>{% trans "Latest handshake:" %} {{ client.latest_handshake }}</p>
<p>
<a class="btn btn-sm btn-default"
<a class="btn btn-default"
href="{% url 'wireguard:edit-client' client.public_key|urlencode:'' %}">
{% trans "Edit Client" %}
</a>
<a class="btn btn-sm btn-default"
<a class="btn btn-default"
href="{% url 'wireguard:delete-client' client.public_key|urlencode:'' %}">
<span class="fa fa-trash-o" aria-hidden="true"></span>
{% trans "Delete Client" %}

View File

@ -33,11 +33,11 @@
<p>{% trans "Latest handshake:" %} {{ server.latest_handshake }}</p>
<p>
<a class="btn btn-sm btn-default"
<a class="btn btn-default"
href="{% url 'wireguard:edit-server' server.public_key|urlencode:'' %}">
{% trans "Edit Server" %}
</a>
<a class="btn btn-sm btn-default"
<a class="btn btn-default"
href="{% url 'wireguard:delete-server' server.public_key|urlencode:'' %}">
<span class="fa fa-trash-o" aria-hidden="true"></span>
{% trans "Delete Server" %}