Skip to content

Commit

Permalink
Fix gear menu ordering
Browse files Browse the repository at this point in the history
At some point the flexDirection for the gear menu got commented out,
causing it to look somewhat strange. This changes the flexDirection back
to column.
  • Loading branch information
Arnei authored and lkiesow committed Nov 23, 2022
1 parent 6c554d9 commit 0c2fcbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/MainContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const MainContent: React.FC<{}> = () => {

const keyboardControlsStyle = css({
display: 'flex',
// flexDirection: 'column' as const,
flexDirection: 'column' as const,
// justifyContent: 'space-around',
...(flexGapReplacementStyle(20, false)),
paddingRight: '20px',
Expand Down

0 comments on commit 0c2fcbd

Please sign in to comment.