tailwindcss-custom-forms
tailwindcss-custom-forms copied to clipboard
Consider having consistent heights
In regards to your Tailwind UI newsletter
Tailwind UI Update # 6: Everything you ever (never?) wanted to know about sizing form controls
I think this could solve issue #43 as well
Upvote.
I am doing a hard workaround for some buttons that only has an icon and needs to be aligned with buttons with text.
.button {
@apply leading-tight py-2 (...)
&.icon-only {
min-height: calc(1.375rem + theme('padding.2') * 2);
}