Merge branch 'main' into nmb/user-invitations

This commit is contained in:
Neil Martinsen-Burrell 2023-03-24 13:39:24 -05:00
commit 9cae5587a8
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184
3 changed files with 18 additions and 13 deletions

View file

@ -325,6 +325,9 @@ section.dashboard {
}
}
.break-word {
word-break: break-word;
}
#wrapper {
padding-top: units(3);

View file

@ -5,6 +5,13 @@
{% block content %}
<div class="grid-container">
<div class="grid-row">
<p class="font-body-sm margin-top-0 margin-bottom-2
text-primary-darker text-semibold"
>
{{ domain.name }}
</p>
</div>
<div class="grid-row grid-gap">
<div class="grid-col-3">
{% include 'domain_sidebar.html' %}
@ -22,16 +29,18 @@
</div>
{% endfor %}
{% endif %}
{% block domain_content %}
<p><a href="{% url 'home' %}">
<a href="{% url 'home' %}" class="breadcrumb__back">
<svg class="usa-icon" aria-hidden="true" focusable="false" role="img">
<use xlink:href="{% static 'img/sprite.svg' %}#arrow_back"></use>
</svg>
Back to manage your domains
</a></p>
<p class="margin-left-05 margin-top-0 margin-bottom-0">
Back to manage your domains
</p>
</a>
<h1>Domain {{ domain.name }}</h1>
{% block domain_content %}
<h1 class="break-word">{{ domain.name }}</h1>
{% endblock %} {# domain_content #}

View file

@ -4,13 +4,6 @@
{% block title %}User management{% endblock %}
{% block domain_content %}
<p><a href="{% url 'home' %}">
<svg class="usa-icon" aria-hidden="true" focusable="false" role="img">
<use xlink:href="{% static 'img/sprite.svg' %}#arrow_back"></use>
</svg>
Back to manage your domains
</a></p>
<h1>User management</h1>
{% if domain.permissions %}