1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Prevent duplicate increment/decrement buttons in Firefox (#9523)

Fixes #9516
This commit is contained in:
David Walsh 2020-10-08 12:23:14 -05:00 committed by GitHub
parent 305e3ceb2e
commit a301ce92d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -114,6 +114,12 @@
border: 1px solid $orange;
}
input[type="number"] {
-webkit-appearance: textfield;
-moz-appearance: textfield;
appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
-moz-appearance: none;