Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
jasneetsingh6114 committed Feb 24, 2025
1 parent c402a08 commit a0b9b24
Showing 1 changed file with 32 additions and 14 deletions.
46 changes: 32 additions & 14 deletions src/Pages/Settings/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -372,28 +372,46 @@ const Settings = () => {
</Box>
<Box
sx={{
display: "flex",
flexWrap: "wrap",
justifyContent: "center",
gap: theme.spacing(2)
display: 'flex',
flexWrap: 'wrap',
gap: theme.spacing(2),
mt: theme.spacing(4),
}}
>
<WalletMultiButton
sx={{
width: { xs: "100%", sm: "auto" },
minWidth: "fit-content",
maxWidth: "100%",
whiteSpace: "nowrap",
padding: theme.spacing(1, 3),
minWidth: theme.spacing(32),
height: theme.spacing(10),
fontSize: theme.typography.body2.fontSize,
fontWeight: theme.typography.fontWeightMedium,
'&:not(:disabled)': {
backgroundColor: theme.palette.accent.main,
'&:hover': {
backgroundColor: theme.palette.accent.dark,
},
},
[theme.breakpoints.down('sm')]: {
minWidth: '100%',
fontSize: theme.typography.body2.fontSize,
},
}}
/>
<WalletDisconnectButton
sx={{
width: { xs: "100%", sm: "auto" },
minWidth: "fit-content",
maxWidth: "100%",
whiteSpace: "nowrap",
padding: theme.spacing(1, 3),
minWidth: theme.spacing(32),
height: theme.spacing(10),
fontSize: theme.typography.body2.fontSize,
fontWeight: theme.typography.fontWeightMedium,
'&:not(:disabled)': {
backgroundColor: theme.palette.error.main,
'&:hover': {
backgroundColor: theme.palette.error.dark,
},
},
[theme.breakpoints.down('sm')]: {
minWidth: '100%',
fontSize: theme.typography.body2.fontSize,
},
}}
/>
</Box>
Expand Down

0 comments on commit a0b9b24

Please sign in to comment.