From c2977d605116a87234079d522231104a5fb84dd1 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sun, 12 May 2024 14:55:17 +0100 Subject: [PATCH] Stop login/signup tab bar getting reversed with RTL languages Fixes #4780 --- 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 0fd3317e0..12d115073 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -741,6 +741,10 @@ tr.turn { h1 { transform: scaleX(-1); } + + ul { + transform: scaleX(-1); + } } /* Rules for small maps in content areas */ -- 2.45.2