Skip to content

Commit

Permalink
fix(quantity): fix arrow showing in safari
Browse files Browse the repository at this point in the history
  • Loading branch information
skhamvon authored and dpellier committed Jan 26, 2024
1 parent 3610d3c commit e826c42
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,14 @@ input {
cursor: not-allowed;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"],
input[type="number"] {
appearance: textfield;
margin: 0;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
appearance: none;
appearance: textfield;
margin: 0;
}

Expand Down

0 comments on commit e826c42

Please sign in to comment.