1
0
mirror of https://github.com/morris/vanilla-todo.git synced 2025-08-20 21:02:10 +02:00

fix basic accessibility things

This commit is contained in:
Morris Brodersen
2023-12-06 19:14:05 +01:00
parent db0fbb85ee
commit 1a6091560d
10 changed files with 31 additions and 27 deletions

View File

@@ -13,10 +13,12 @@ export function TodoCustomList(el) {
el.innerHTML = /* html */ `
<div class="header">
<h3 class="title"></h3>
<h2 class="title"></h2>
<p class="form">
<input type="text" class="input use-focus-other">
<button class="app-button delete"><i class="app-icon" data-id="trash-16"></i></button>
<input type="text" class="input use-focus-other" aria-label="Title">
<button class="app-button delete" title="Delete">
<i class="app-icon" data-id="trash-16"></i>
</button>
</p>
</div>
<div class="todo-list"></div>