diff --git a/BTCPayServer/Views/Wallets/WalletTransactions.cshtml b/BTCPayServer/Views/Wallets/WalletTransactions.cshtml index 2317fa3c1..73413b1eb 100644 --- a/BTCPayServer/Views/Wallets/WalletTransactions.cshtml +++ b/BTCPayServer/Views/Wallets/WalletTransactions.cshtml @@ -31,6 +31,21 @@ .transactionLabel:not(:last-child) { margin-bottom: 4px; } + + .removeTransactionLabelForm { + display: inline; + position: absolute; + right: 4px; + } + + .removeTransactionLabelForm button { + color: #212529; + cursor: pointer; + display: inline; + padding: 0; + background-color: transparent; + border: 0; + } @if (TempData.ContainsKey("TempDataProperty-StatusMessage")) { @@ -82,9 +97,25 @@ background-color: @label.Color; color: white; display: block; + padding-right: 16px; + position: relative; " > @label.Value +
}