From 3f89c54d681ae2907670ffcb5b259269679d45d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Fri, 9 Aug 2019 16:40:09 +0100 Subject: [PATCH] fix(ui): ensure that progress bar height is always enforced --- ui/src/Components/Labels/LabelWithPercent/index.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ui/src/Components/Labels/LabelWithPercent/index.scss b/ui/src/Components/Labels/LabelWithPercent/index.scss index f22744c94..5b66ae02d 100644 --- a/ui/src/Components/Labels/LabelWithPercent/index.scss +++ b/ui/src/Components/Labels/LabelWithPercent/index.scss @@ -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; +}