Created
March 20, 2020 10:23
-
-
Save zorca/f1533a1728abd512710ce31c547096ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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