renderer: showing progress on slow runs

This commit is contained in:
muerwre 2018-12-10 12:22:38 +07:00
parent 25ae7f8282
commit 66f79db43d
9 changed files with 87 additions and 9 deletions

16
src/styles/progress.less Normal file
View file

@ -0,0 +1,16 @@
.progress {
width: 100%;
position: relative;
height: 5px;
background: #111111;
border-radius: @panel_radius;
box-sizing: border-box;
.bar {
width: 30%;
background: linear-gradient(270deg, @blue_primary, @blue_secondary);
height: 100%;
border-radius: @panel_radius;
transition: width 500ms;
}
}