Skip to content

Instantly share code, notes, and snippets.

@opdavies
Created July 9, 2014 22:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save opdavies/904418da605c39e10e80 to your computer and use it in GitHub Desktop.
Save opdavies/904418da605c39e10e80 to your computer and use it in GitHub Desktop.
@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