Make 0% visible in auto-updater progress bar

This commit is contained in:
Yuya Ochiai
2018-10-17 00:05:34 +09:00
parent ccdfbae3b2
commit 76e94cca38
2 changed files with 5 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ InstallButton.propTypes = {
function UpdaterPage(props) {
return (
<div>
<div className='UpdaterPage'>
<Navbar>
<h1 className='UpdaterPage-heading'>{'New update is available'}</h1>
</Navbar>

View File

@@ -10,3 +10,7 @@
.UpdaterPage-footer {
padding: 1em 0;
}
.UpdaterPage .progress-bar {
min-width: 2em;
}