juliana 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/sass/juliana/_mixins.scss +13 -0
- metadata +2 -2
data/sass/juliana/_mixins.scss
CHANGED
@@ -56,4 +56,17 @@
|
|
56
56
|
-moz-transition: $params;
|
57
57
|
-o-transition: $params;
|
58
58
|
transition: $params;
|
59
|
+
}
|
60
|
+
|
61
|
+
//**
|
62
|
+
//* Sets rotation values
|
63
|
+
//*
|
64
|
+
//* @param string $params The parameters of your rotate
|
65
|
+
//*/
|
66
|
+
@mixin rotate ( $params ) {
|
67
|
+
-webkit-transform: rotate( $params );
|
68
|
+
-moz-transform: rotate( $params );
|
69
|
+
-ms-transform: rotate( $params );
|
70
|
+
-o-transform: rotate( $params );
|
71
|
+
transform: rotate( $params );
|
59
72
|
}
|