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

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
smaller task count
  • Loading branch information
ShMcK committed Feb 12, 2020
commit 4229cbb5eb24278cc9599d933df9971f5a344e9a
6 changes: 5 additions & 1 deletion web-app/src/containers/Tutorial/LevelPage/Level.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ const styles = {
right: 0,
color: 'white',
},
taskCount: {
fontSize: '0.8rem',
opacity: 0.9,
},
}

interface Props {
Expand Down Expand Up @@ -128,7 +132,7 @@ const Level = ({ level, onContinue, onLoadSolution, processes, testStatus }: Pro
Continue
</Button>
) : (
<span>
<span css={styles.taskCount}>
{currentStep} of {level.steps.length} tasks
</span>
)}
Expand Down