Disable Scroll input for Number Entry Component

Is it possible to disable the scroll input for number entry components?

We don’t tend to use scroll for input or adjustments and it just leads to errors when users accidentally scroll the form.

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

Please try this CSS.

3 Likes

Sadly we don’t have access to custom CSS on our legacy pro account.

1 Like