Skip to content

Fix/alignment #152

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
Mar 22, 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
Next Next commit
fix start page alignment & text
  • Loading branch information
ShMcK committed Mar 22, 2020
commit 3b67d5128dc39b376a27010a3df3433f32704a0f
8 changes: 4 additions & 4 deletions web-app/src/containers/Start/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const styles = {
},
subtitle: {
fontSize: '1.3rem',
textAlign: 'center' as 'center',
},
options: {
flex: 1,
Expand All @@ -54,11 +55,10 @@ export const StartPage = (props: Props) => (
<BetaBadge>
<span css={styles.title}>CodeRoad</span>
</BetaBadge>
<h3 css={styles.subtitle}>Play Interactive Coding Tutorials in VSCode</h3>
<p>Learn by coding in a real environment.</p>
<h3 css={styles.subtitle}>Play Tutorials in VSCode</h3>
<p>Learn in a real environment.</p>
<p>Instant feedback on save.</p>
<p>Progress saves to Git.</p>
<p>Build your portfolio as you learn.</p>
<p>Build your portfolio and Git timeline.</p>
</div>

<div css={styles.options}>
Expand Down