diff --git a/client/components/share/NumInput.vue b/client/components/share/NumInput.vue index 1f126e82..cb9b4c3d 100644 --- a/client/components/share/NumInput.vue +++ b/client/components/share/NumInput.vue @@ -5,11 +5,21 @@ class="no-mp" :class="(error ? 'error' : '')" > + @@ -87,10 +97,11 @@ class NumInput extends NumInputProps { .button { font-size: 130%; border-radius: 20px; - color: #616161; + color: #bbb; } .button:hover { + color: #616161; background-color: #efebe9; } @@ -98,4 +109,10 @@ class NumInput extends NumInputProps { background-color: #ffabab; border-radius: 3px; } + +.disable, .disable:hover { + cursor: not-allowed; + color: #bbb; + background-color: white; +} \ No newline at end of file