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
cleanup overview page padding
  • Loading branch information
ShMcK committed Feb 12, 2020
commit 8ffce840958efc6e334cb679ed561596247be1d2
5 changes: 4 additions & 1 deletion web-app/src/containers/Overview/OverviewPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ const styles = {
levelList: {
padding: '0rem 1rem',
},
levelSummary: {
paddingLeft: '1.1rem',
},
footer: {
position: 'fixed' as 'fixed',
bottom: 0,
Expand Down Expand Up @@ -87,7 +90,7 @@ const Summary = ({ title, description, levels, onNext, onBack }: Props) => (
<h4>
{index + 1}. {level.title}
</h4>
<div>{level.summary}</div>
<div css={styles.levelSummary}>{level.summary}</div>
<Divider />
</div>
))}
Expand Down