Fixed font size wasn't apply to icons which make things look werid

This commit is contained in:
DrMint 2022-05-17 21:42:45 +02:00
parent aadc5f48e7
commit 50e988f64f
1 changed files with 2 additions and 2 deletions

View File

@ -425,7 +425,7 @@ export function AppLayout(props: Immutable<Props>): JSX.Element {
) )
} }
> >
<span className="material-icons">text_decrease</span> <span className="material-icons !text-base">text_decrease</span>
</Button> </Button>
<Button <Button
className="rounded-l-none rounded-r-none border-x-0" className="rounded-l-none rounded-r-none border-x-0"
@ -449,7 +449,7 @@ export function AppLayout(props: Immutable<Props>): JSX.Element {
) )
} }
> >
<span className="material-icons">text_increase</span> <span className="material-icons !text-base">text_increase</span>
</Button> </Button>
</div> </div>
</div> </div>