https://github.com/sha-red/compass-mixins/tree/master/lib
extended with more sass frameworks and as django app.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
393 B
19 lines
393 B
// Susy Prefix |
|
// =========== |
|
|
|
// Prefix |
|
// ------ |
|
// Output simple prefixed properties. |
|
// - $prop : <css property> |
|
// - $val : <css value> |
|
// - [$prefix] : <browser prefix list> |
|
@mixin susy-prefix( |
|
$prop, |
|
$val, |
|
$prefix: official |
|
) { |
|
@each $fix in $prefix { |
|
$fix: if($fix == official or not($fix), $prop, '-#{$fix}-#{$prop}'); |
|
@include susy-rem($fix, $val); |
|
} |
|
}
|
|
|