0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-08-08 10:45:01 +00:00

Add nav buttons to the tab order and use semantic buttons so they are interactable with the keyboard

This commit is contained in:
durstann
2026-07-26 23:35:13 -07:00
parent 98117dae0e
commit 3628d1d57d
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -61,10 +61,10 @@ const Nav = {
{icon}
</a>;
} else {
return <div {...props} className={classes} onClick={this.handleClick} >
return <button {...props} className={classes} onClick={this.handleClick} >
{this.props.children}
{icon}
</div>;
</button>;
}
}
}),