Perspective - Numeric Input Value Component BUG?

If you only need these rules in one area, you're better served targeting the specific component.

/* Chrome, Safari, Edge, Opera */
#myTargetDomId input::-webkit-outer-spin-button,
#myTargetDomId input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

Couple this with use of the meta.domId property to target an individual component.
Screenshot 2023-04-05 at 8.01.37 AM
Screenshot 2023-04-05 at 8.01.55 AM

2 Likes