Skip to content

Commit

Permalink
fix: remove unnecessary transform
Browse files Browse the repository at this point in the history
  • Loading branch information
mpleroux committed Sep 10, 2024
1 parent 9fca0dc commit 0fc2ac4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions es-ds-components/components/es-slider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ const model = defineModel<number>();
class: 'slider-handle',
},
}" />
</div>

<div class="d-flex flex-row justify-content-between w-100">
<span>{{ labelFormatter(min) }}</span>
<span>{{ labelFormatter(max) }}</span>
<div class="d-flex flex-row justify-content-between w-100">
<span>{{ labelFormatter(min) }}</span>
<span>{{ labelFormatter(max) }}</span>
</div>
</div>
</template>

Expand All @@ -76,7 +76,7 @@ const model = defineModel<number>();
cursor: pointer;
filter: drop-shadow(0 1px 6px rgba(34, 38, 51, 0.25));
height: 28px;
transform: translate(-32%, -32%);
transform: translate(0, -32%);
width: 28px;
&:focus-visible {
Expand Down

0 comments on commit 0fc2ac4

Please sign in to comment.