Skip to content

Commit

Permalink
fix(components): adjust footer columns to distribute space in between
Browse files Browse the repository at this point in the history
- so that columns don't go too left visually
  • Loading branch information
MrOrz committed Jan 10, 2024
1 parent e681250 commit b430006
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/AppLayout/AppFooter.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const useStyles = makeStyles(theme => ({
margin: 60,
display: 'flex',
flexWrap: 'wrap',
justifyContent: 'space-between',
},
second: {
display: 'flex',
Expand All @@ -52,7 +53,7 @@ const useStyles = makeStyles(theme => ({
height: 'auto',
},
column: {
flex: '1 1 auto',
flex: '0 1 auto',
minWidth: 'max-content', // distribute width using longest content in the column
},
linkTextWithIcon: {
Expand Down

0 comments on commit b430006

Please sign in to comment.