App: browser compat updates

This commit is contained in:
rektdeckard
2021-05-30 23:31:26 -04:00
parent 73b66e2e86
commit b8eac52689
9 changed files with 40 additions and 38 deletions

View File

@@ -1,4 +1,5 @@
menu.toolbar {
nav.toolbar {
position: -webkit-sticky;
position: sticky;
top: -1px;
padding: 0;

View File

@@ -10,14 +10,14 @@ type ToolbarProps = {};
const Toolbar: React.FC<ToolbarProps> = () => {
return (
<menu className="toolbar" id="toolbar">
<nav className="toolbar" id="toolbar">
<div className="toolbar-contents">
<StyleInput />
<SearchInput />
<SizeInput />
<ColorInput />
</div>
</menu>
</nav>
);
};