Commit b9abeab7 by Brian Jacobel

Cheat around a Bourbon depr warning by using a private mixin

parent a7e7a827
......@@ -28,19 +28,19 @@ h1.top-header {
.light-button, a.light-button, // only used in askbot as classes
.gray-button {
@include button(simple, $gray-l5);
@include simple($gray-l5);
@extend .button-reset;
font-size: em(13);
}
.blue-button {
@include button(simple, $blue);
@include simple($blue);
@extend .button-reset;
font-size: em(13);
}
.pink-button {
@include button(simple, $pink);
@include simple($pink);
@extend .button-reset;
font-size: em(13);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment