mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2026-02-04 18:24:14 +02:00
fixed bug with 0-step
This commit is contained in:
@@ -235,6 +235,10 @@ input[type="number"]::-webkit-outer-spin-button {
|
|||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.steps-btns__display span {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
.btns-style__steps button {
|
.btns-style__steps button {
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
background: #252C47;
|
background: #252C47;
|
||||||
|
|||||||
@@ -48,7 +48,7 @@
|
|||||||
<template v-for="(item, index) in PercentageGameSteps" :key="index">
|
<template v-for="(item, index) in PercentageGameSteps" :key="index">
|
||||||
<swiper-slide>
|
<swiper-slide>
|
||||||
<div class="steps-btns__display">
|
<div class="steps-btns__display">
|
||||||
<button>{{ item.toFixed(2) }} <span>{{ index }} {{ stepsEndOfWord(index) }}</span></button>
|
<button>{{ item.toFixed(2) }} <span>{{ index + 1 }} {{ stepsEndOfWord(index) }}</span></button>
|
||||||
</div>
|
</div>
|
||||||
</swiper-slide>
|
</swiper-slide>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user