Merge pull request #869 from prymitive/fix-percent

fix(ui): ensure that progress bar height is always enforced
This commit is contained in:
Łukasz Mierzwa
2019-08-09 19:41:25 +01:00
committed by GitHub

View File

@@ -5,8 +5,12 @@
padding-bottom: 0.25rem;
}
.components-labelWithPercent-progress {
.components-labelWithPercent-progress.progress {
height: 2px;
margin-top: 2px;
background-color: darken($light, 10%);
}
.components-labelWithPercent-progress.progress > .progress-bar {
height: 2px;
}