-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
bug: RTL drawer is messed up #2034
Comments
The problem is [dir=rtl] .drawer-side>:not(.drawer-overlay){
transform: translateX(-100%);
} to: [dir=rtl] .drawer-side>:not(.drawer-overlay){
transform: translateX(100%);
} I suggest to remove |
this seems to be the same as #1974, when it will be fixed? |
Thanks @haghft that solves the problem with RTL Drawer but only for the one that appears on the right. |
I'm working on it. Will be fixed soon |
@saadeghi, any update? |
What version of daisyUI are you using?
3.1.5
Describe your issue
After upgrading to 3.1.15, the drawer in RTL versions is always visible.
The drawer also comes from the left side while it should be coming from the right side.
What browsers are you seeing the problem on?
Chrome and Safari
Reproduction URL (optional)
https://play.tailwindcss.com/1Vj1TO1ezs
The text was updated successfully, but these errors were encountered: