-
Notifications
You must be signed in to change notification settings - Fork 21
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
Add a support for a .button class #7
Comments
Thanks for the suggestion, sounds like a good idea |
Just some input regarding this. This project is about resetting form elements, not styling them. I would keep it simple and just remove all styles from the button element and let the user style their elements. .Button,
button,
input[type="button"],
input[type="submit"] {
/* whatever they desire */
} Though lets be honest, Its been years and this wont happen. |
Hey guys! Sorry about the delay, I haven't had much time to dedicate to this project in ages. I've been thinking about this and I'm not sure that adding a class here would be best. As @michaelmano said:
I think adding a Let me know what you guys think. |
@ireade I would love to see this project grow and will help out if you don't mind contributors. |
@michaelmano Sure I'd be open to that! |
Sometimes you want to style your links as if they were buttons - and it would be handy to allow users to assign a class which would inherit button styling, so you can write this:
This should render the same as this:
Currently you have to
@extend
, but I am not sure if it's the best idea, because it affects the compile time.The text was updated successfully, but these errors were encountered: