|
|
@@ -9,8 +9,8 @@
|
|
|
<span>{{ handleNumberValue(item.qty) }}</span>
|
|
|
</li>
|
|
|
<li v-else :class="active === 'sell_' + index ? 'is-active' : ''" @click="onPriceClick(BuyOrSell.Sell, index)">
|
|
|
- <span style="font-size: 20px;">{{ item.label }}</span>
|
|
|
- <span style="font-size: 20px;" :class="item.color">{{ handleNumberValue(item.price.toFixed(quote?.decimalplace)) }}</span>
|
|
|
+ <span style="font-size: 18px;">{{ item.label }}</span>
|
|
|
+ <span style="font-size: 18px;" :class="item.color">{{ handleNumberValue(item.price.toFixed(quote?.decimalplace)) }}</span>
|
|
|
</li>
|
|
|
</template>
|
|
|
</ul>
|
|
|
@@ -23,8 +23,8 @@
|
|
|
<span>{{ handleNumberValue(item.qty) }}</span>
|
|
|
</li>
|
|
|
<li v-else :class="active === 'buy_' + index ? 'is-active' : ''" @click="onPriceClick(BuyOrSell.Buy, index)">
|
|
|
- <span style="font-size: 20px;">{{ item.label }}</span>
|
|
|
- <span style="font-size: 20px;" :class="item.color">{{ handleNumberValue(item.price.toFixed(quote?.decimalplace)) }}</span>
|
|
|
+ <span style="font-size: 18px;">{{ item.label }}</span>
|
|
|
+ <span style="font-size: 18px;" :class="item.color">{{ handleNumberValue(item.price.toFixed(quote?.decimalplace)) }}</span>
|
|
|
</li>
|
|
|
</template>
|
|
|
</ul>
|