Toolbar: update style to match spec

This commit is contained in:
rektdeckard
2020-07-29 12:26:24 -04:00
parent b1a4a93e73
commit c269343014
2 changed files with 24 additions and 14 deletions

View File

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