Fixing email link overflow (#1019)

# Fixed
- Fixed: Fixed an issue where the email link would extend past the modal.
This commit is contained in:
Robbie Davis 2022-02-01 10:41:06 -05:00 committed by GitHub
parent 6ee8320c2b
commit d17ecf4e87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -30,7 +30,7 @@
<ng-container *ngIf="emailLink !== '' && checkedAccessibility && !accessible"> <ng-container *ngIf="emailLink !== '' && checkedAccessibility && !accessible">
<p>Use this link to finish setting up the user account due to your server not being accessible outside your local network.</p> <p>Use this link to finish setting up the user account due to your server not being accessible outside your local network.</p>
<a href="{{emailLink}}" target="_blank">{{emailLink}}</a> <a class="email-link" href="{{emailLink}}" target="_blank">{{emailLink}}</a>
</ng-container> </ng-container>
<div class="row no-gutters"> <div class="row no-gutters">

View File

@ -0,0 +1,5 @@
.email-link {
word-break: break-all;
margin-bottom: 15px;
display: block;
}