added height and width the the ImgIcon common component in order to control the icon size so that icons that are not square dont get the bottom cut off

This commit is contained in:
csawatzky 2025-03-13 16:28:36 -06:00
parent 53a7c486ce
commit 17f4cbc242
8 changed files with 2218 additions and 17 deletions

View file

@ -139,7 +139,7 @@ export default function SideNavigator(props: Props) {
classes={getClasses("/bin")}
>
<ListItemIcon>
<BinsIcon />
<BinsIcon height={"26px"}/>
</ListItemIcon>
{open && <ListItemText primary="Bins" />}
</ListItemButton>
@ -168,7 +168,7 @@ export default function SideNavigator(props: Props) {
classes={getClasses("/mine")}
>
<ListItemIcon>
<MiningIcon />
<MiningIcon height={"26px"} width={"26px"} />
</ListItemIcon>
{open && <ListItemText primary="Mines" />}
</ListItemButton>