Skip to content

Commit

Permalink
fix(ui): delete and export save button being reversed
Browse files Browse the repository at this point in the history
  • Loading branch information
kleinfreund committed Jan 17, 2025
1 parent 8f59bbb commit c3bbfd0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -403,21 +403,21 @@ <h2>Duplicate card?</h2>
<div class="action-list">
<button class="button" type="button" data-s-load-button>Load</button>

<button class="s-delete-button button --icon" type="button" data-s-delete-button>
<span class="visually-hidden">Delete save</span>

<svg class="icon">
<use xlink:href="#trash-icon"></use>
</svg>
</button>

<button class="s-export-button button --icon" type="submit" data-s-export-button>
<svg class="icon">
<use xlink:href="#file-arrow-down-icon"></use>
</svg>

<span class="visually-hidden">Export</span>
</button>

<button class="s-delete-button button --icon" type="button" data-s-delete-button>
<span class="visually-hidden">Delete save</span>

<svg class="icon">
<use xlink:href="#trash-icon"></use>
</svg>
</button>
</div>
</td>
</tr>
Expand Down

0 comments on commit c3bbfd0

Please sign in to comment.