Skip to content

Minor fixes #105

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 5 commits into from
Feb 12, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

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
Next Next commit
cleanup checkbox container ui
  • Loading branch information
ShMcK committed Feb 12, 2020
commit cecc17b2f602550484ed04a441dc36a60e1c6536
8 changes: 6 additions & 2 deletions web-app/src/containers/Tutorial/LevelPage/Step.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@ const styles = {
card: {
display: 'grid',
gridTemplateColumns: '25px 1fr',
padding: '1rem 1rem 1rem 0.2rem',
padding: '1rem 1rem 1rem 0rem',
},
content: {
margin: 0,
},
checkboxContainer: {
paddingTop: 2,
width: '1rem',
},
options: {
display: 'flex' as 'flex',
flexDirection: 'row' as 'row',
Expand All @@ -39,7 +43,7 @@ const Step = (props: Props) => {
return (
<div>
<div css={styles.card}>
<div>
<div css={styles.checkboxContainer}>
<Checkbox status={props.status} />
</div>
<div>
Expand Down