UI: Fix spacing of Lightning Address info on invoice details page

This commit is contained in:
Dennis Reimann 2025-02-19 09:38:12 +01:00
parent a7e910f7ff
commit 9d5baabc2c
No known key found for this signature in database
GPG key ID: 5009E1797F03F8D0

View file

@ -78,13 +78,13 @@
</table> </table>
@if (!string.IsNullOrEmpty(providedComment)) @if (!string.IsNullOrEmpty(providedComment))
{ {
<div> <div class="p-2">
<b>LNURL Comment</b>: @providedComment <b>LNURL Comment</b>: @providedComment
</div> </div>
} }
@if (!string.IsNullOrEmpty(consumedLightningAddress)) @if (!string.IsNullOrEmpty(consumedLightningAddress))
{ {
<div> <div class="p-2">
<b>Lightning address used</b>: @consumedLightningAddress <b>Lightning address used</b>: @consumedLightningAddress
</div> </div>
} }