mirror of
https://github.com/danbee/tube-status-server
synced 2025-03-04 08:39:12 +00:00
12 lines
384 B
SCSS
12 lines
384 B
SCSS
@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);
|
|
}
|