Files
edx-platform/common/static/sass/bourbon/css3/_transform.scss
2016-03-15 11:57:38 -04:00

16 lines
447 B
SCSS

@mixin transform($property: none) {
// none | <transform-function>
@include prefixer(transform, $property, 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, spec);
}
@mixin transform-style ($style: flat) {
@include prefixer(transform-style, $style, spec);
}