Skip to content

Instantly share code, notes, and snippets.

@luwes
Created October 1, 2013 07:43
Show Gist options
  • Save luwes/6775080 to your computer and use it in GitHub Desktop.
Save luwes/6775080 to your computer and use it in GitHub Desktop.
Sass mixins
@mixin prefixed($property, $value) {
@each $prefix in "-webkit-", "-moz-", "-ms-", "-o-", "" {
#{$prefix}#{$property}: #{$value};
}
}
@mixin transition($props) {
@include prefixed('transition', $props);
}
@mixin border-radius($value: 3px) {
@include prefixed('border-radius', $value);
// keeps background from busting out of border
@include prefixed('background-clip', padding-box);
}
@mixin box-shadow($props) {
@include prefixed('box-shadow', $props);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment