1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00

fix the spacing

This commit is contained in:
Sosuke Suzuki
2017-05-12 19:54:52 +09:00
parent 1c31ff4e98
commit c28980c2a9

View File

@@ -14,7 +14,7 @@ const TodoListPercentage = ({
percentageOfTodo
}) => (
<div styleName='percentageBar' style={{display: isNaN(percentageOfTodo) ? 'none' : ''}}>
<div styleName='progressBar' style={{width:`${percentageOfTodo}%`}}>
<div styleName='progressBar' style={{width: `${percentageOfTodo}%`}}>
<p styleName='percentageText'>{percentageOfTodo}%</p>
</div>
</div>