Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

_sassybuttons.scss padding not compiling #50

Open
zreese opened this issue Apr 15, 2014 · 0 comments
Open

_sassybuttons.scss padding not compiling #50

zreese opened this issue Apr 15, 2014 · 0 comments

Comments

@zreese
Copy link

zreese commented Apr 15, 2014

For the life of me, I can't get padding changes to compile. There's nothing else overriding the padding. I'm using version 0.2.6.

Here is my _sassybuttons.scss file...

@import "sassy-buttons";

$sb-base-color: #5B728F;
$sb-second-color: false;
$sb-border-radius: 4px;
$sb-padding: 0 0 0 0;
$sb-font-size: 16px;
$sb-text-color: white;
$sb-text-style: "inset";
$sb-gradient-style: "flat";
$sb-pseudo-states: true;
$sb-ie-support: true;

And in my other scss file I call it like this...

input[type="submit"] {
  @include sassy-button("flat", 6px, 20px, $blue, $blue, white, "inset");
}

But no matter what, this is what's compiled to the css file...

input[type="submit"] {
  font-size: 20px;
  padding: 0.2em 1.1em 0.3em 1.2em;
  color: white;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF5B728F', endColorstr='#FF334051');
  background-color: #5b728f;
  border: 0;
  text-shadow: #293441 0 -1px 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant