Skip to content

Commit 4229cbb

Browse files
committed
smaller task count
1 parent 2f734d4 commit 4229cbb

File tree

1 file changed

+5
-1
lines changed
  • web-app/src/containers/Tutorial/LevelPage

1 file changed

+5
-1
lines changed

web-app/src/containers/Tutorial/LevelPage/Level.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ const styles = {
6363
right: 0,
6464
color: 'white',
6565
},
66+
taskCount: {
67+
fontSize: '0.8rem',
68+
opacity: 0.9,
69+
},
6670
}
6771

6872
interface Props {
@@ -128,7 +132,7 @@ const Level = ({ level, onContinue, onLoadSolution, processes, testStatus }: Pro
128132
Continue
129133
</Button>
130134
) : (
131-
<span>
135+
<span css={styles.taskCount}>
132136
{currentStep} of {level.steps.length} tasks
133137
</span>
134138
)}

0 commit comments

Comments
 (0)