8000 cleanup overview page padding · An0nCrypto/coderoad-vscode@8ffce84 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8ffce84

Browse files
committed
cleanup overview page padding
1 parent cecc17b commit 8ffce84

File tree

1 file changed

+1
lines changed

1 file changed

+4
-1
lines changed

web-app/src/containers/Overview/OverviewPage.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ const styles = {
3838
levelList: {
3939
padding: '0rem 1rem',
4040
},
41+
levelSummary: {
42+
paddingLeft: '1.1rem',
43+
},
4144
footer: {
4245
position: 'fixed' as 'fixed',
4346
bottom: 0,
@@ -87,7 +90,7 @@ const Summary = ({ title, description, levels, onNext, onBack }: Props) => (
8790
<h4>
8891
{index + 1}. {level.title}
8992
</h4>
90-
<div>{level.summary}</div>
93+
<div css={styles.levelSummary}>{level.summary}</div>
9194
<Divider />
9295
</div>
9396
))}

0 commit comments

Comments
 (0)
0