Remove word domain from h1, allow domains names to wrap

Signed-off-by: igorkorenfeld <52677065+igorkorenfeld@users.noreply.github.com>
This commit is contained in:
igorkorenfeld 2023-03-23 16:56:48 -04:00
parent 1abcb27636
commit 26a49a7db4
No known key found for this signature in database
GPG key ID: 826947A4B867F659
2 changed files with 4 additions and 1 deletions

View file

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

View file

@ -40,7 +40,7 @@
{% block domain_content %}
<h1>Domain {{ domain.name }}</h1>
<h1 class="break-word">{{ domain.name }}</h1>
{% endblock %} {# domain_content #}