Skip to content

Commit

Permalink
Fixed Toolbar Color
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutoshpw committed Nov 4, 2024
1 parent 34c5a7d commit 1a90654
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/modules/common/ToolbarAccount.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,20 +159,20 @@ export const ToolbarAccount: React.FC<any> = ({ children, variant = "common" })
}
}}
>
<AddressMenu>
<AddressMenu id="address-menu">
<AddressMenuItem container alignItems="center" onClick={() => handleCopy(account)}>
<AddressMenuIcon item>
<FileCopyOutlined color="inherit" fontSize="inherit" />
</AddressMenuIcon>
<Grid item>
<Typography variant="subtitle2" color="textSecondary">
<Typography variant="subtitle2" style={{ color: "#ddd" }}>
{toShortAddress(walletAddress)}
</Typography>
</Grid>
</AddressMenuItem>
<AddressMenuItem container alignItems="center" onClick={handleNetworkClick}>
<Grid item>
<Typography variant="subtitle2" color="textSecondary">
<Typography variant="subtitle2" style={{ color: "#ddd" }}>
Change network ({network})
</Typography>
</Grid>
Expand All @@ -189,7 +189,7 @@ export const ToolbarAccount: React.FC<any> = ({ children, variant = "common" })
<ExitToAppOutlined color="inherit" fontSize="inherit" />
</AddressMenuIcon>
<Grid item>
<Typography variant="subtitle2" color="textSecondary">
<Typography variant="subtitle2" style={{ color: "#ddd" }}>
Log out
</Typography>
</Grid>
Expand Down

0 comments on commit 1a90654

Please sign in to comment.