Created
December 12, 2016 21:30
-
-
Save estrattonbailey/caf148124aebd3b1a079e798d0ad9526 to your computer and use it in GitHub Desktop.
Custom select recipe
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
.select-wrapper { | |
position: relative; | |
display: inline-block; | |
&:after { | |
position: absolute; | |
content: '\25bc'; | |
top: calc(50% - 0.7em); | |
right: 1em; | |
font-size: 0.6em; | |
color: inherit; | |
pointer-events: none; | |
} | |
select { | |
padding: .35em 2.5em .35em .55em; | |
appearance: none; | |
-webkit-appearance: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment