mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
Fixing email link overflow (#1019)
# Fixed - Fixed: Fixed an issue where the email link would extend past the modal.
This commit is contained in:
parent
6ee8320c2b
commit
d17ecf4e87
@ -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">
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
.email-link {
|
||||||
|
word-break: break-all;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
display: block;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user