We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hey @bradlc, while further working I noticed something else:
The plugin doesn't generate tailwinds standard classes for padding/margin Tailwind: .p{side?}-{size}, .m{side?}-{size}
.p{side?}-{size}, .m{side?}-{size}
Plugin: .p-{side?}-{size}, .m-{side?}-{size}
.p-{side?}-{size}, .m-{side?}-{size}
and it doesn't output tailwinds standard classes for vertical / horizontal side .py-sm-fluid / .px-sm-fluid / .my-sm-fluid / .mx-sm-fluid
.py-sm-fluid / .px-sm-fluid / .my-sm-fluid / .mx-sm-fluid
Maybe it's obsolet because classes for top, left, right, bottom are there. But its a little confusing because of tailwinds standards.
Maybe it would be a good alternative to make it optional: Option: classes for horizontal/vertical Option: classes for top/bottom/right/left
The text was updated successfully, but these errors were encountered:
Nice spot @pandroid! This oversight has happened because some class names do use a hyphen (e.g. rounded-t-sm) and some don’t (e.g. pr-3).
rounded-t-sm
pr-3
I agree that the plugin should generate vertical and horizontal class names as well.
Thanks again for posting these issues. I have only used the plugin for text sizing so far so these issues have gone unnoticed 👍
Sorry, something went wrong.
remove unwanted hypens from padding and margin class names #3
d48f1d4
add padding/margin x and y classes. fix border-radius t/r/b/l classes #3
8749a49
No branches or pull requests
Hey @bradlc,
while further working I noticed something else:
The plugin doesn't generate tailwinds standard classes for padding/margin
Tailwind:
.p{side?}-{size}, .m{side?}-{size}
Plugin:
.p-{side?}-{size}, .m-{side?}-{size}
and it doesn't output tailwinds standard classes for vertical / horizontal side
.py-sm-fluid / .px-sm-fluid / .my-sm-fluid / .mx-sm-fluid
Maybe it's obsolet because classes for top, left, right, bottom are there. But its a little confusing because of tailwinds standards.
Maybe it would be a good alternative to make it optional:
Option: classes for horizontal/vertical
Option: classes for top/bottom/right/left
The text was updated successfully, but these errors were encountered: