Skip to content

Commit

Permalink
fix proportion slider height
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarcosfer committed Feb 8, 2022
1 parent 88413ec commit 095d53d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions examples/demos/onsets/src/components/ProportionSlider.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div style="height: 50%;">
<div class="h-100 w-100 d-flex mb-2 rounded-lg" id="multislider" ref="TagSliderRef">
<div style="height: 6em;" id="multislider-container">
<div class="h-100 w-100 d-flex mb-2 rounded-lg flex-grow-1" id="multislider" ref="TagSliderRef">
<proportion-tag
v-for="(tag, index) in tagsOn" :key="index"
:name="tag.name"
Expand All @@ -10,7 +10,6 @@
@slider-select-on="onSliderSelect($event, index)"
@slider-select-off="showTagPercentage=false"
@tag-clicked="removeTag"
class="flex-grow-1"
@pointerenter="(name) => $emit('pointerenter', name)"
@pointerleave="$emit('pointerleave')">
</proportion-tag>
Expand Down

0 comments on commit 095d53d

Please sign in to comment.