From 6ab8fec2b2ccbd39a412541b33854030be4c268a Mon Sep 17 00:00:00 2001 From: Nameer Haider Date: Tue, 22 Oct 2024 20:56:40 +0300 Subject: [PATCH] fix: fixing welcome image overlap --- themes/conventional-commits/layouts/partials/welcome.html | 2 +- .../static/css/scss/layout/_welcome.scss | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/themes/conventional-commits/layouts/partials/welcome.html b/themes/conventional-commits/layouts/partials/welcome.html index 3aa909a..8abc059 100644 --- a/themes/conventional-commits/layouts/partials/welcome.html +++ b/themes/conventional-commits/layouts/partials/welcome.html @@ -9,7 +9,7 @@ {{ end }} {{ end }} -
+
diff --git a/themes/conventional-commits/static/css/scss/layout/_welcome.scss b/themes/conventional-commits/static/css/scss/layout/_welcome.scss index c67e97a..3347549 100644 --- a/themes/conventional-commits/static/css/scss/layout/_welcome.scss +++ b/themes/conventional-commits/static/css/scss/layout/_welcome.scss @@ -110,5 +110,11 @@ max-height: 100%; } } + + // Override for RTL layout if RTL is enabled + .rtl__image { + right: auto !important; + left: 0; + } }