Increased size of config button

This commit is contained in:
DrMint 2022-05-13 21:15:34 +02:00
parent 3469b5bfe9
commit f51f7322fe
1 changed files with 1 additions and 12 deletions

View File

@ -72,22 +72,11 @@ export default function MainPanel(props: Immutable<Props>): JSX.Element {
disabled={!appLayout.mainPanelReduced} disabled={!appLayout.mainPanelReduced}
> >
<Button <Button
className={
appLayout.mainPanelReduced && isDesktop
? ""
: "!py-0.5 !px-2.5"
}
onClick={() => { onClick={() => {
appLayout.setConfigPanelOpen(true); appLayout.setConfigPanelOpen(true);
}} }}
> >
<span <span className={"material-icons"}>settings</span>
className={`material-icons ${
!(appLayout.mainPanelReduced && isDesktop) && "!text-sm"
} `}
>
settings
</span>
</Button> </Button>
</ToolTip> </ToolTip>