mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-08 16:44:28 +01:00
Merge pull request #956 from woutersamaey/prevent-layout-break-long-text-links
Prevent layout from breaking on hyperlinks with very long URLs as the visible text
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
width: 140px;
|
||||
}
|
||||
</style>
|
||||
<section>
|
||||
<section class="invoice-details">
|
||||
<div class="container">
|
||||
@if (!string.IsNullOrEmpty(Model.StatusMessage))
|
||||
{
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user