Skip to content

Commit

Permalink
fix note scrolling issue on opening cooperation details
Browse files Browse the repository at this point in the history
  • Loading branch information
luiqor committed Nov 19, 2024
1 parent ff1cf99 commit 4547a4c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@ export const styles = {
},
closeBtn: {
color: 'error.700',
minWidth: 'max-content',
ml: '15px',
'&: hover': {
backgroundColor: 'transparent',
color: 'primary.500'
}
},
dropdown: {
maxWidth: '216px'
maxWidth: '216px',
ml: '15px'
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const style = {
},
container: {
display: 'grid',
gridTemplateColumns: 'repeat(2, max-content)',
gridTemplateColumns: 'repeat(2, minmax(0, max-content))',
gap: '40px',
padding: '10px 0 ',
mt: '20px'
Expand Down

0 comments on commit 4547a4c

Please sign in to comment.