diff --git a/app/templates/views/manage-users.html b/app/templates/views/manage-users.html
index bd91a2f04..f8585870e 100644
--- a/app/templates/views/manage-users.html
+++ b/app/templates/views/manage-users.html
@@ -9,9 +9,19 @@
{% block maincolumn_content %}
-
- Team members
-
+
+
+ Team members
+
+ {% if current_user.has_permissions('manage_service') %}
+ {{ usaButton({
+ "element": "a",
+ "text": "Invite a team member",
+ "href": url_for('.invite_user', service_id=current_service.id),
+ "classes": "usa-button--outline"
+ }) }}
+ {% endif %}
+
{% if show_search_box %}
@@ -84,15 +94,4 @@
{% endfor %}
- {% if current_user.has_permissions('manage_service') %}
-
- {{ usaButton({
- "element": "a",
- "text": "Invite a team member",
- "href": url_for('.invite_user', service_id=current_service.id),
- "classes": "usa-button"
- }) }}
-
- {% endif %}
-
{% endblock %}