Coding style decided

This commit is contained in:
2018-05-05 21:13:43 +10:00
parent 5eb4d7ee4f
commit 3a27f7985b
28 changed files with 1085 additions and 6 deletions

View File

@ -0,0 +1,34 @@
/*
* Transform Mixins
* Provides mixins for transforms
*
* Dependencies:
* styles/tools/prefix.scss - Used to prefix browser support
*
* Version:
* 1.0.1 - 2018/01/24
*/
@mixin t-transform($transforms) {
@include t-prefix-property(transform, $transforms, moz o ms webkit spec);
}
@mixin t-translate($x, $y) {
@include t-transform(translate($x, $y));
}
@mixin t-translate-x($x) {
@include t-transform(translateX($x));
}
@mixin t-translate-y($y) {
@include t-transform(translateY($y));
}
@mixin t-scale($amt) {
@include t-transform(scale($amt));
}
@mixin t-rotate($amt) {
@include t-transform(rotate($amt));
}