RTL support

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

  1. 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">
  1. 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 :slight_smile:

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.