Skip to content

Commit

Permalink
fix: ImportBar alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Crash-- committed Jan 23, 2019
1 parent 7e52d61 commit 2a1c891
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,13 @@ const ContactImportationCard = props => {
<span className="importation-status">{t(statusKey(status))}</span>
)
)}
{progress && <progress value={progress.current} max={progress.total} />}
{progress && (
<progress
value={progress.current}
max={progress.total}
className={'u-m-auto u-mv-0'}
/>
)}
</ContactImportationCardWrapper>
)
}
Expand Down

0 comments on commit 2a1c891

Please sign in to comment.