Created
July 9, 2014 22:54
-
-
Save opdavies/904418da605c39e10e80 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
@mixin styled-select($width: 200px, $margin: 30px) { | |
overflow: hidden; | |
width: $width; | |
select { | |
@include appearance(none); | |
@include border-radius(0); | |
background: none; | |
border: none; | |
cursor: pointer; | |
width: $width + $margin; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment