Skip to content

Commit

Permalink
fix: adjust penalty calculator reduction slider size
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Trost <[email protected]>
  • Loading branch information
galexrt committed Oct 11, 2024
1 parent cc396c3 commit 967dc6b
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,11 @@ const columns = [
<div class="text-xl">
<PenaltyStats :summary="state" :reduction="reduction" />

<div class="my-2 flex flex-row items-center gap-2 text-lg">
<URange v-model="reduction" :min="0" :max="25" :step="1" />
<div class="my-2 flex flex-row items-center gap-2 text-sm">
<p class="font-semibold">
{{ $t('common.reduction') }}
</p>
<URange v-model="reduction" size="sm" :min="0" :max="25" :step="1" />
<p class="w-12">{{ reduction }}%</p>
</div>

Expand Down

0 comments on commit 967dc6b

Please sign in to comment.