diff --git a/src/main/resources/static/general.css b/src/main/resources/static/general.css index a7c3d38f..1180ed5f 100644 --- a/src/main/resources/static/general.css +++ b/src/main/resources/static/general.css @@ -1,14 +1,23 @@ #page-container { - min-height: 100vh; - display: flex; - flex-direction: column; + min-height: 100vh; + display: flex; + flex-direction: column; } #content-wrap { - flex: 1; + flex: 1; } #footer { -bottom: 0; -width: 100%; -} \ No newline at end of file + bottom: 0; + width: 100%; +} + +:is(html[lang=en], html[lang=fr]) * { + direction: ltr; +} + +:is(html[lang=ar]) * { + direction: rtl; + text-align: right; +} diff --git a/src/main/resources/templates/fragments/common.html b/src/main/resources/templates/fragments/common.html index 4340d5e8..3c97cc3b 100644 --- a/src/main/resources/templates/fragments/common.html +++ b/src/main/resources/templates/fragments/common.html @@ -117,4 +117,10 @@ } }); + + \ No newline at end of file