diff --git a/website/client/src/components/shared/numberIncrement.vue b/website/client/src/components/shared/numberIncrement.vue index 594728f523..a3cc5f6b2f 100644 --- a/website/client/src/components/shared/numberIncrement.vue +++ b/website/client/src/components/shared/numberIncrement.vue @@ -1,92 +1,146 @@ - + + - - - - - - - - - - - - - - - - - - + + + + + + + + class="gray-circle" + @keyup="selectedAmountToBuy++" + > + + + + class="gray-circle" + @click="selectedAmountToSell--" + @keyup.native="preventNegative($event)" + > + + + + + + + + + + + + class="gray-circle" + @click="selectedAmountToBuy--" + @keyup.native="preventNegative($event)" + > + + + + + + + + + + + + + + + + + + + + + + + + @@ -94,6 +148,14 @@