Merge pull request #568 from fsylum/master

Reordering vendor-prefixes property in the mixin: props @fsylum
This commit is contained in:
Tammie Lister 2014-08-13 13:11:47 +01:00
commit 47267e9fd5
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
@ -33,4 +33,4 @@
// Center after (not all clearfix need this also) // Center after (not all clearfix need this also)
@mixin clearfix-after() { @mixin clearfix-after() {
clear: both; clear: both;
} }