forked from mirror/_s
Put vendor specific property first
This commit is contained in:
parent
96718641de
commit
6a8b42795d
|
@ -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
|
||||||
|
|
Reference in New Issue