1
0
mirror of https://github.com/morris/vanilla-todo.git synced 2025-08-23 22:24:39 +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

@@ -30,11 +30,11 @@ export function AppDatePicker(el) {
el.innerHTML = /* html */ `
<h4 class="header">
<button class="app-button -circle previousmonth">
<button class="app-button -circle previousmonth" title="Previous month">
<i class="app-icon" data-id="chevron-left-16"></i>
</button>
<span class="month"></span>
<button class="app-button -circle nextmonth">
<button class="app-button -circle nextmonth" title="Next month">
<i class="app-icon" data-id="chevron-right-16"></i>
</button>
</h4>