Skip to content

Feature/minor fixes #75

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 14, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix process events positioning
  • Loading branch information
ShMcK committed Jan 14, 2020
commit 0041ef18bedb3c2e0c3411b9b9f04c4713b70081
14 changes: 8 additions & 6 deletions web-app/src/containers/Tutorial/LevelPage/Level.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const styles = {
display: 'flex' as 'flex',
flexDirection: 'column' as 'column',
padding: 0,
paddingBottom: '36px',
paddingBottom: 72,
height: 'auto',
width: '100%',
},
Expand Down Expand Up @@ -42,18 +42,20 @@ const styles = {
},
processes: {
padding: '0 1rem',
position: 'absolute' as 'absolute',
bottom: '36px',
position: 'fixed' as 'fixed',
bottom: 36,
left: 0,
right: 0,
},
footer: {
display: 'flex' as 'flex',
flexDirection: 'row' as 'row',
justifyContent: 'space-between',
alignItems: 'center',
height: '36px',
height: 36,
backgroundColor: 'black',
fontSize: '16px',
lineHeight: '16px',
fontSize: 16,
lineHeight: 16,
padding: '10px 1rem',
position: 'fixed' as 'fixed',
bottom: 0,
Expand Down