Merge pull request #679 from iandunn/center-block-margins

Remove unnecessary margin-top and margin-bottom from center-block mixin.
This commit is contained in:
Konstantin Obenland 2015-01-12 13:36:42 -08:00
commit 60a6eeb6a5
2 changed files with 4 additions and 2 deletions

View File

@ -7,7 +7,8 @@
// Center block // Center block
@mixin center-block { @mixin center-block {
display: block; display: block;
margin: 0 auto; margin-left: auto;
margin-right: auto;
} }
// Clearfix // Clearfix

View File

@ -579,7 +579,8 @@ a:active {
.aligncenter { .aligncenter {
clear: both; clear: both;
display: block; display: block;
margin: 0 auto; margin-left: auto;
margin-right: auto;
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------