Prevent layout from breaking on hyperlinks with very long URLs as the visible text

This commit is contained in:
Wouter Samaey 2019-08-04 11:29:03 +02:00
parent 140259e737
commit 59a770e0d7
2 changed files with 6 additions and 1 deletions

View file

@ -15,7 +15,7 @@
width: 140px;
}
</style>
<section>
<section class="invoice-details">
<div class="container">
@if (!string.IsNullOrEmpty(Model.StatusMessage))
{

View file

@ -114,3 +114,8 @@ a.nav-link {
max-width: 600px;
}
}
.invoice-details a{
/* Prevent layout from breaking on hyperlinks with very long URLs as the visible text */
word-break: break-word;
}