Skip to content

Instantly share code, notes, and snippets.

@zorca
Created March 20, 2020 10:23
Show Gist options
  • Save zorca/f1533a1728abd512710ce31c547096ab to your computer and use it in GitHub Desktop.
Save zorca/f1533a1728abd512710ce31c547096ab to your computer and use it in GitHub Desktop.
input:not([type=checkbox]):not([type=radio]),
textarea,
select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
input, select {
border: none;
&:focus {
outline: none;
border: 2px solid #FEC530;
}
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="number"] {
-moz-appearance: textfield!important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment