1
0

Update settings.html to include SVG icons for buttons

This commit is contained in:
2025-05-25 00:52:38 +02:00
parent 8ba7ab159b
commit 83a88dd619

View File

@@ -305,8 +305,18 @@
<!-- Weitere Optionen in Zukunft hier hinzufügen -->
</div>
<div class="buttons">
<button id="cancelBtn">Cancel</button>
<button id="okBtn">OK</button>
<button id="cancelBtn" class="action-btn cancel-btn">
<svg width="18" height="18" viewBox="0 0 20 20" fill="none" class="icon-left">
<path d="M6 6l8 8M6 14L14 6" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
</svg>
Cancel
</button>
<button id="okBtn" class="action-btn ok-btn">
<svg width="18" height="18" viewBox="0 0 20 20" fill="none" class="icon-left">
<path d="M5 11l4 4L15 7" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
</svg>
OK
</button>
</div>
</div>
</body>