fix(ui): ensure that progress bar height is always enforced

This commit is contained in:
Łukasz Mierzwa
2019-08-09 16:40:09 +01:00
parent 9c3af49b41
commit 3f89c54d68

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;
}