Skip to content

Commit

Permalink
style: fix css
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentC35 committed Nov 3, 2023
1 parent ed18902 commit 13f3951
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,18 @@ export const useStyles = makeStyles(() => ({
width: '100%',
},
activeView: {
height: '100%',
display: 'flex',
flexDirection: 'row',
height: '100%',
width: '100%',
// fix css with a new <div/> elements needed for autoFocus
'& > div:first-of-type': {
display: 'flex',
flexDirection: 'row',
height: '100%',
width: 'inherit',
},
'& > div:first-of-type > div': {
width: '80%',
marginLeft: '100px',
marginTop: '3em',
Expand Down

0 comments on commit 13f3951

Please sign in to comment.