You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into an issue with making the arrow for the select dropdown show on the left side of the box with for rtl languages. This is an issue specific to the tailwindcss-forms plugin as it adds in the arrow as a background image.
Not sure if tailwindcss-rtl is the right place for this but here is the quick fix I made.
[dir="rtl"] select {
background-position: left 0.5rem center;
padding-left: 2.5rem;
}
The text was updated successfully, but these errors were encountered:
[dir="rtl"] .form-select {
background-position: left 0.5rem center;
}
/* For those who use it direct */
[dir="rtl"] select {
background-position: left 0.5rem center;
}
I ran into an issue with making the arrow for the select dropdown show on the left side of the box with for rtl languages. This is an issue specific to the tailwindcss-forms plugin as it adds in the arrow as a background image.
Not sure if tailwindcss-rtl is the right place for this but here is the quick fix I made.
The text was updated successfully, but these errors were encountered: