From d6586275e971ee7c4c3f3712dc5ea50899f3135f Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 12 Oct 2022 08:48:29 +0100 Subject: [PATCH] Unflip the heading text on the new user screen for RTL languages Fixes #3752 --- app/assets/stylesheets/common.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index 744625e87..5ff48dc6c 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -1091,6 +1091,10 @@ tr.turn:hover { [dir=rtl] .header-illustration { transform: scaleX(-1); + + h1 { + transform: scaleX(-1); + } } #content.maximised { -- 2.39.5