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.
16 lines
501 B
16 lines
501 B
7 years ago
|
@mixin transform($property: none) {
|
||
|
// none | <transform-function>
|
||
|
@include prefixer(transform, $property, webkit moz ms o spec);
|
||
|
}
|
||
|
|
||
|
@mixin transform-origin($axes: 50%) {
|
||
|
// x-axis - left | center | right | length | %
|
||
|
// y-axis - top | center | bottom | length | %
|
||
|
// z-axis - length
|
||
|
@include prefixer(transform-origin, $axes, webkit moz ms o spec);
|
||
|
}
|
||
|
|
||
|
@mixin transform-style($style: flat) {
|
||
|
@include prefixer(transform-style, $style, webkit moz ms o spec);
|
||
|
}
|