Changed defaults

Also removed 3rd party flexbox mixins
This commit is contained in:
Stephan 2017-02-27 17:51:25 +01:00
parent ff3af38c25
commit 7e85f9f654
8 changed files with 156 additions and 401 deletions

View file

@ -14,10 +14,10 @@
* @include vendor-prefix(hyphens, auto)
*/
@mixin vendor-prefix($name, $argument) {
-webkit-#{$name}: #{$argument};
-ms-#{$name}: #{$argument};
-moz-#{$name}: #{$argument};
-o-#{$name}: #{$argument};
#{$name}: #{$argument};
-webkit-#{$name}: #{$argument};
-ms-#{$name}: #{$argument};
-moz-#{$name}: #{$argument};
-o-#{$name}: #{$argument};
#{$name}: #{$argument};
}