Skip to content

Commit

Permalink
Merge pull request #855 from invariant-labs/dev
Browse files Browse the repository at this point in the history
Update stagin env
  • Loading branch information
wojciech-cichocki authored Jan 9, 2025
2 parents b15c3ec + cdb31b7 commit 0e75c54
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
9 changes: 7 additions & 2 deletions src/components/Header/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ const useStyles = makeStyles()((theme: Theme) => {
backgroundColor: colors.invariant.black,
borderRadius: '10px',
transition: 'left 300ms',
width: 'fit-content'
width: 'fit-content',
margin: '0 12px',
textWrap: 'nowrap'
},
connectedWalletIcon: {
minWidth: 21,
Expand Down Expand Up @@ -92,7 +94,10 @@ const useStyles = makeStyles()((theme: Theme) => {
backgroundColor: colors.invariant.component,
borderRadius: 14,
width: 'auto',
padding: 4
padding: 4,
[theme.breakpoints.down('lg')]: {
marginLeft: 12
}
},
buttonsLgConnected: {
[theme.breakpoints.up('lg')]: {
Expand Down
7 changes: 7 additions & 0 deletions src/components/Snackbar/CustomSnackbar/CustomSnackbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,13 @@ const CustomSnackbar = React.forwardRef<HTMLDivElement, CustomContentProps>(
</StyledCloseButton>
</Grid>
)}
{!link && !txid && (
<Grid display='flex' mx={1} minWidth='fit-content'>
<StyledCloseButton onClick={handleDismiss}>
<img width={16} src={icons.closeIcon} alt='Close'></img>
</StyledCloseButton>
</Grid>
)}
</>
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/static/theme/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export const theme = createTheme({
sm: 600,
md: 960,
lg: 1280,
xl: 1950
xl: 1920
}
}
})

0 comments on commit 0e75c54

Please sign in to comment.