Skip to content

Commit

Permalink
Custom Offline Payments: Make configuration CRUD button icons more vi…
Browse files Browse the repository at this point in the history
…sible.

Make the icons for the custom offline payment method 'update' and
'delete' more visible.
  • Loading branch information
shanebrowncs committed Jan 5, 2025
1 parent 297dfef commit d7c50ad
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class OfflinePaymentConfigBlock extends LitElement {
<br/>
<div style="display: flex; flex-direction: row; justify-content: flex-end;">
<sl-icon-button
style="background-color: rgb(153, 95, 13); margin-right: 5px;"
style="color: #E8E0E0; background-color: rgb(153, 95, 13); margin-right: 5px;"
name="pencil-square"
label="Edit"
@click=${() => {
Expand All @@ -78,7 +78,7 @@ export class OfflinePaymentConfigBlock extends LitElement {
<sl-icon-button
label="Delete"
name="trash"
style="background-color: rgb(148, 35, 32);"
style="color: #E8E0E0; background-color: rgb(148, 35, 32);"
@click=${() => {
this._selectedPaymentMethod = config.paymentName;
this.confirmDialog?.openDialog()
Expand Down

0 comments on commit d7c50ad

Please sign in to comment.