Created
October 1, 2013 07:43
-
-
Save luwes/6775080 to your computer and use it in GitHub Desktop.
Sass mixins
This file contains 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 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