Skip to content

Commit 952a718

Browse files
committed
Use break-all to avoid unnecessary line breaks
1 parent 3d9329b commit 952a718

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

warehouse/templates/accounts/profile.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@
2424
<img src="{{ gravatar(request, user.email, size=225) }}" alt="{{ alt }}" title="{{ alt }}">
2525
<div class="author-profile__info">
2626
{% if user.name %}
27-
<h1 class="author-profile__name">{{ user.name }}</h1>
27+
<h1 class="author-profile__name break">{{ user.name }}</h1>
2828
{% endif %}
2929
<div class="author-profile__meta">
3030
<p>
3131
<i class="fa fa-user-circle" aria-hidden="true"></i>
3232
<span class="sr-only">{% trans %}Username{% endtrans %}</span>
33-
&nbsp;&nbsp;{{ user.username }}
33+
&nbsp;&nbsp;
34+
<span class="break">{{ user.username }}</span>
3435
</p>
3536
{% if user.date_joined %}
3637
<p>

0 commit comments

Comments
 (0)