Skip to content

Instantly share code, notes, and snippets.

@doughamlin
Last active August 29, 2015 14:11
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 doughamlin/57ce9805daa9256064a1 to your computer and use it in GitHub Desktop.
Save doughamlin/57ce9805daa9256064a1 to your computer and use it in GitHub Desktop.
Random Sass mixins I've made for myself.
@mixin bg($url, $color: transparent, $repeat: no-repeat, $position: center center, $size: contain) {
background: $color url($url) $repeat $position;
background-size: $size;
}
@mixin size($width, $height: $width) {
width: $width;
height: $height;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment