From f9d10fa4b2bcd3f298488752dfbcf68148b72a59 Mon Sep 17 00:00:00 2001 From: Jens Stigaard Date: Wed, 20 May 2020 22:07:03 +0200 Subject: [PATCH] Fixed height for input duration progress bar --- src/components/SwitcherButton.vue | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/components/SwitcherButton.vue b/src/components/SwitcherButton.vue index f263da1..9cf2892 100644 --- a/src/components/SwitcherButton.vue +++ b/src/components/SwitcherButton.vue @@ -33,12 +33,13 @@ v-col.ma-1 div(v-if="hasDuration").switch-button-title-text {{ elapsedText }} div(v-else): p - v-progress-linear( - v-if="hasDuration" - :value="position" - :height="progressBarHeight" - :color="progressBarColor" - ).mt-1 + div.pt-1(style="height:10px") + v-progress-linear( + v-if="hasDuration" + :value="position" + :height="progressBarHeight" + :color="progressBarColor" + )