scale deprecated #5606

This commit is contained in:
James Koster 2014-10-17 20:58:43 +01:00
parent 734b8c7f53
commit 51db7f9ef2
1 changed files with 8 additions and 0 deletions

View File

@ -4,6 +4,10 @@ $red: #a00;
$orange: #ffba00;
$blue: #2ea2cc;
/**
* Deprecated
* Fallback for bourbon equivalent
*/
@mixin clearfix() {
*zoom: 1;
@ -131,6 +135,10 @@ $blue: #2ea2cc;
transition: $selector $animation $duration;
}
/**
* Deprecated
* Use bourbon mixin instead `@include transform(scale(1.5));`
*/
@mixin scale($ratio: 1.5) {
-webkit-transform: scale($ratio);
-moz-transform: scale($ratio);