Skip to content

Commit

Permalink
fix: enable scrolling for emails longer than their containers
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidSemke committed Feb 2, 2025
1 parent 8827d1e commit 5a07768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions allauth_ui/templates/account/email.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
{% for radio in emailaddress_radios %}
{% with emailaddress=radio.emailaddress %}
<div class="form-control">
<label class="cursor-pointer label border p-3 rounded">
<span class="label-text">{{ emailaddress.email }}
<label class="flex gap-3 cursor-pointer label border rounded px-3">
<span class="grow label-text overflow-auto py-3">{{ emailaddress.email }}
{% if emailaddress.verified %}
<div class="badge badge-primary badge-outline">{% trans "verified" %}</div>
{% endif %}
Expand Down

0 comments on commit 5a07768

Please sign in to comment.