Increased size of config button
This commit is contained in:
parent
3469b5bfe9
commit
f51f7322fe
|
@ -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>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue