mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-21 22:11:48 +01:00
Prevent layout from breaking on hyperlinks with very long URLs as the visible text
This commit is contained in:
parent
140259e737
commit
59a770e0d7
2 changed files with 6 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
||||||
width: 140px;
|
width: 140px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<section>
|
<section class="invoice-details">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
@if (!string.IsNullOrEmpty(Model.StatusMessage))
|
@if (!string.IsNullOrEmpty(Model.StatusMessage))
|
||||||
{
|
{
|
||||||
|
|
|
@ -114,3 +114,8 @@ a.nav-link {
|
||||||
max-width: 600px;
|
max-width: 600px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.invoice-details a{
|
||||||
|
/* Prevent layout from breaking on hyperlinks with very long URLs as the visible text */
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue