Skip to content

Commit

Permalink
fix: background color
Browse files Browse the repository at this point in the history
  • Loading branch information
chybisov committed Sep 30, 2024
1 parent a74604f commit afe4d44
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/wallet-management/src/components/WalletMenuModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ export const WalletMenuModal: React.FC<PropsWithChildren<WalletMenuProps>> = ({
PaperProps={{
sx: (theme) => ({
maxHeight: '80%',
backgroundImage: 'none',
backgroundColor: theme.palette.background.default,
background: theme.palette.background.default,
borderTopLeftRadius: theme.shape.borderRadius * 2,
borderTopRightRadius: theme.shape.borderRadius * 2,
}),
Expand All @@ -52,8 +51,7 @@ export const WalletMenuModal: React.FC<PropsWithChildren<WalletMenuProps>> = ({
sx: (theme) => ({
width: '100%',
maxWidth: maxWidth,
backgroundImage: 'none',
backgroundColor: theme.palette.background.default,
background: theme.palette.background.default,
borderTopLeftRadius: theme.shape.borderRadius * 2,
borderTopRightRadius: theme.shape.borderRadius * 2,
borderBottomLeftRadius: theme.shape.borderRadius * 2,
Expand Down

0 comments on commit afe4d44

Please sign in to comment.