summaryrefslogtreecommitdiff
path: root/_sass/bourbon/css3/_perspective.scss
diff options
context:
space:
mode:
Diffstat (limited to '_sass/bourbon/css3/_perspective.scss')
-rw-r--r--_sass/bourbon/css3/_perspective.scss8
1 files changed, 8 insertions, 0 deletions
diff --git a/_sass/bourbon/css3/_perspective.scss b/_sass/bourbon/css3/_perspective.scss
new file mode 100644
index 0000000..0e4deb8
--- /dev/null
+++ b/_sass/bourbon/css3/_perspective.scss
@@ -0,0 +1,8 @@
+@mixin perspective($depth: none) {
+ // none | <length>
+ @include prefixer(perspective, $depth, webkit moz spec);
+}
+
+@mixin perspective-origin($value: 50% 50%) {
+ @include prefixer(perspective-origin, $value, webkit moz spec);
+}