Fixes border radius in full outline button

This commit is contained in:
Manu Mtz.-Almeida
2016-02-02 15:49:17 +01:00
parent 71c6078ac5
commit a7415f10cc

View File

@ -62,6 +62,13 @@ a.button {
.button-full { .button-full {
width: 100%; width: 100%;
// Full Outline Button
&.button-outline {
border-left-width: 0;
border-right-width: 0;
border-radius: 0;
}
} }
@ -72,11 +79,3 @@ a.button {
padding: $button-round-padding; padding: $button-round-padding;
border-radius: $button-round-border-radius; border-radius: $button-round-border-radius;
} }
// Full Outline Button
// --------------------------------------------------
.button-full.button-outline {
border-left-width: 0;
border-right-width: 0;
}