Put vendor specific property first

This commit is contained in:
Firdaus Zahari 2014-08-13 20:03:05 +08:00
parent 96718641de
commit 6a8b42795d
1 changed files with 5 additions and 5 deletions

View File

@ -6,16 +6,16 @@
// Box model
@mixin box-sizing($box-model) {
box-sizing: $box-model;
-moz-box-sizing: $box-model; // Firefox <= 19
-webkit-box-sizing: $box-model; // Safari <= 5
-webkit-box-sizing: $box-model; // Safari <= 7
-moz-box-sizing: $box-model; // Firefox <= 19
box-sizing: $box-model;
}
// Border radius
@mixin border-radius($radius) {
background-clip: padding-box; /* stops bg color from leaking outside the border: */
border-radius: $radius;
-webkit-border-radius: $radius;
border-radius: $radius;
}
// Center block
@ -33,4 +33,4 @@
// Center after (not all clearfix need this also)
@mixin clearfix-after() {
clear: both;
}
}