Skip to content

Commit f9d10fa

Browse files
author
Jens Stigaard
committed
Fixed height for input duration progress bar
1 parent eb5c227 commit f9d10fa

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/components/SwitcherButton.vue

+7-6
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,13 @@ v-col.ma-1
3333
div(v-if="hasDuration").switch-button-title-text {{ elapsedText }}
3434
div(v-else): p
3535

36-
v-progress-linear(
37-
v-if="hasDuration"
38-
:value="position"
39-
:height="progressBarHeight"
40-
:color="progressBarColor"
41-
).mt-1
36+
div.pt-1(style="height:10px")
37+
v-progress-linear(
38+
v-if="hasDuration"
39+
:value="position"
40+
:height="progressBarHeight"
41+
:color="progressBarColor"
42+
)
4243
</template>
4344

4445
<script lang="ts">

0 commit comments

Comments
 (0)