From 354ad2b8963bbde1a5ab3186a3e649307d66b500 Mon Sep 17 00:00:00 2001 From: Cor van Noorloos Date: Wed, 13 Aug 2014 18:38:51 +0200 Subject: [PATCH] indentation using tabs instead of mixed tabs/spaces see https://github.com/Automattic/_s/pull/565 --- sass/mixins/_mixins-master.scss | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/sass/mixins/_mixins-master.scss b/sass/mixins/_mixins-master.scss index 30e4749d..34c21c63 100644 --- a/sass/mixins/_mixins-master.scss +++ b/sass/mixins/_mixins-master.scss @@ -1,7 +1,7 @@ // Rem output with px fallback @mixin font-size($sizeValue: 1.6) { - font-size: ($sizeValue * 10) + px; - font-size: $sizeValue + rem; + font-size: ($sizeValue * 10) + px; + font-size: $sizeValue + rem; } // Box model @@ -13,24 +13,24 @@ // Border radius @mixin border-radius($radius) { - background-clip: padding-box; /* stops bg color from leaking outside the border: */ - -webkit-border-radius: $radius; - border-radius: $radius; + background-clip: padding-box; /* stops bg color from leaking outside the border: */ + -webkit-border-radius: $radius; + border-radius: $radius; } // Center block @mixin center-block { - display: block; - margin: 0 auto; + display: block; + margin: 0 auto; } // Clearfix @mixin clearfix() { - content: ""; - display: table; + content: ""; + display: table; } // Center after (not all clearfix need this also) @mixin clearfix-after() { - clear: both; + clear: both; }