The RTL support of the hosted/toolkit does not support RTL.
When the selected language is Hebrew, there are a few issues with the CSS/HTML
- The root html attributes are wrong
I would expect the html tag to be:
expected <html lang=βheβ dir=βrtlβ>
actual <html lang="en" dir="ltr">
- The writing direction for some reason is also controlled via CSS
which makes the html tag mentioned above useless
<style>
html,
body {
direction: ltr;
}
#root {
direction: ltr;
}
</style>
I would expect an Israeli company to do better ![]()
The entire layout/flow of the elements should have beeen flipped
This is making me consider wheather Rapyd is the right solution, as the UX will be sub-optiomal for my users.
