9 lines
209 B
SCSS
9 lines
209 B
SCSS
@mixin perspective($depth: none) {
|
|
// none | <length>
|
|
@include prefixer(perspective, $depth, spec);
|
|
}
|
|
|
|
@mixin perspective-origin($value: 50% 50%) {
|
|
@include prefixer(perspective-origin, $value, spec);
|
|
}
|