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 // Box model
@mixin box-sizing($box-model) { @mixin box-sizing($box-model) {
box-sizing: $box-model; -webkit-box-sizing: $box-model; // Safari <= 7
-moz-box-sizing: $box-model; // Firefox <= 19 -moz-box-sizing: $box-model; // Firefox <= 19
-webkit-box-sizing: $box-model; // Safari <= 5 box-sizing: $box-model;
} }
// Border radius // Border radius
@mixin border-radius($radius) { @mixin border-radius($radius) {
background-clip: padding-box; /* stops bg color from leaking outside the border: */ background-clip: padding-box; /* stops bg color from leaking outside the border: */
border-radius: $radius;
-webkit-border-radius: $radius; -webkit-border-radius: $radius;
border-radius: $radius;
} }
// Center block // Center block