fix(web): svgs may need explicit height/width in rare cases on linux

This commit is contained in:
Paul Armstrong
2021-02-08 13:35:41 -08:00
committed by Blake Blackshear
parent d2e7c360b9
commit 24ec13e36d
10 changed files with 20 additions and 20 deletions

View File

@@ -77,14 +77,14 @@ export default function AppBar({ title }) {
>
<div className="lg:hidden">
<Button color="black" className="rounded-full w-12 h-12" onClick={handleShowDrawer} type="text">
<MenuIcon />
<MenuIcon className="w-10 h-10" />
</Button>
</div>
<LinkedLogo />
<div className="flex-grow-1 flex justify-end w-full">
<div className="w-auto" ref={moreRef}>
<Button color="black" className="rounded-full w-12 h-12" onClick={handleShowMenu} type="text">
<MoreIcon />
<MoreIcon className="w-10 h-10" />
</Button>
</div>
</div>