fix(button): fixed block button margin left & right

references #689
This commit is contained in:
Brandy Carney
2015-12-08 17:08:31 -05:00
parent afaf4d6de4
commit 96616842ec
3 changed files with 11 additions and 2 deletions

View File

@@ -48,8 +48,6 @@ a.button {
.button-block {
display: flex;
clear: both;
margin-right: 0;
margin-left: 0;
width: 100%;
&:after {

View File

@@ -96,6 +96,8 @@ $button-ios-small-icon-font-size: 1.3em !default;
// This fixes an issue with flexbox and button on iOS Safari. See #225
display: block;
line-height: $button-ios-height;
margin-left: 0;
margin-right: 0;
}

View File

@@ -121,6 +121,15 @@ $button-md-small-icon-font-size: 1.4em !default;
}
// Material Design Block Button
// --------------------------------------------------
.button-block {
margin-right: 0;
margin-left: 0;
}
// Material Design Outline Button
// --------------------------------------------------