lighthouse requirements

This commit is contained in:
Ben Phelps 2022-09-26 15:03:02 +03:00
parent 990ae8464e
commit 086bfa310f
9 changed files with 21 additions and 6 deletions

View file

@ -45,6 +45,7 @@ export default function ColorToggle() {
className="h-5 w-5 text-theme-800 dark:text-theme-200 transition duration-150 ease-in-out"
aria-hidden="true"
/>
<span className="sr-only">Change color</span>
</Popover.Button>
<Transition
as={Fragment}
@ -67,6 +68,7 @@ export default function ColorToggle() {
`rounded-md w-5 h-5 border-black/50 dark:border-white/50 theme-${color} bg-theme-400`
)}
/>
<span className="sr-only">{color}</span>
</button>
))}
</div>