From d585ab82e17b2b57a41df597aa09656e52cba40b Mon Sep 17 00:00:00 2001 From: yash khanpara <158573701+khanparaYash@users.noreply.github.com> Date: Thu, 19 Feb 2026 22:42:46 +0530 Subject: [PATCH 1/6] Fix: footer alignment issue on mobile view Signed-off-by: yash khanpara <158573701+khanparaYash@users.noreply.github.com> --- src/css/custom.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/css/custom.css b/src/css/custom.css index 79b7624a5..bc112cca8 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -565,6 +565,13 @@ footer svg { /* .footer .footer__block { display: block; } */ + .footer__copyright+div { + text-align: -webkit-center; + } + + .footer__icons.footer { + text-align: -webkit-center; + } } /* Docs */ From 87dbb1ea3803ab7378e732c6e4b7c30a12131571 Mon Sep 17 00:00:00 2001 From: yash khanpara <158573701+khanparaYash@users.noreply.github.com> Date: Thu, 19 Feb 2026 22:44:57 +0530 Subject: [PATCH 2/6] fix:className to class Signed-off-by: yash khanpara <158573701+khanparaYash@users.noreply.github.com> --- docusaurus.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 1efe37351..0054536bf 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -311,7 +311,7 @@ module.exports = { -
+ From 7d97a6c928565e482fbced30f0f07b67521b9eb3 Mon Sep 17 00:00:00 2001 From: yash khanpara <158573701+khanparaYash@users.noreply.github.com> Date: Fri, 27 Mar 2026 10:50:30 +0530 Subject: [PATCH 3/6] Apply suggestion from @kilo-code-bot[bot] Co-authored-by: kilo-code-bot[bot] <240665456+kilo-code-bot[bot]@users.noreply.github.com> Signed-off-by: yash khanpara <158573701+khanparaYash@users.noreply.github.com> --- src/css/custom.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/css/custom.css b/src/css/custom.css index bc112cca8..7c0da29a8 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -566,7 +566,7 @@ footer svg { display: block; } */ .footer__copyright+div { - text-align: -webkit-center; + text-align: center; } .footer__icons.footer { From f70e85c5b61d006450a9f9d93da0f3e660c5ce2e Mon Sep 17 00:00:00 2001 From: yash khanpara <158573701+khanparaYash@users.noreply.github.com> Date: Fri, 27 Mar 2026 10:50:49 +0530 Subject: [PATCH 4/6] Apply suggestion from @kilo-code-bot[bot] Co-authored-by: kilo-code-bot[bot] <240665456+kilo-code-bot[bot]@users.noreply.github.com> Signed-off-by: yash khanpara <158573701+khanparaYash@users.noreply.github.com> --- src/css/custom.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/css/custom.css b/src/css/custom.css index 7c0da29a8..e4d91c11a 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -570,7 +570,7 @@ footer svg { } .footer__icons.footer { - text-align: -webkit-center; + text-align: center; } } From cab13367d058df1a7ffe87a3c50aa0fa50950c24 Mon Sep 17 00:00:00 2001 From: yk00004 Date: Fri, 10 Apr 2026 10:40:44 +0530 Subject: [PATCH 5/6] fix: center footer links on mobile without affecting large view --- src/css/custom.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/css/custom.css b/src/css/custom.css index e4d91c11a..faf21ea86 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -565,12 +565,15 @@ footer svg { /* .footer .footer__block { display: block; } */ - .footer__copyright+div { - text-align: center; + +} +@media (max-width: 996px) { +.footer__copyright+div { + text-align: -webkit-center; } .footer__icons.footer { - text-align: center; + text-align: -webkit-center; } } From c5bb7bd38f0c7d61a81ecdb41f8d35097c49ba3f Mon Sep 17 00:00:00 2001 From: yash khanpara <158573701+khanparaYash@users.noreply.github.com> Date: Thu, 30 Apr 2026 18:19:32 +0530 Subject: [PATCH 6/6] Align footer text to center for smaller screens MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks for the detailed feedback! I’ve replaced the deprecated `-webkit-center` with the standard `center` value and cleaned up the media query formatting for consistency. Please take another look. Signed-off-by: yash khanpara <158573701+khanparaYash@users.noreply.github.com> --- src/css/custom.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/css/custom.css b/src/css/custom.css index faf21ea86..86e4e9663 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -568,12 +568,12 @@ footer svg { } @media (max-width: 996px) { -.footer__copyright+div { - text-align: -webkit-center; + .footer__copyright+div { + text-align: center; } .footer__icons.footer { - text-align: -webkit-center; + text-align: center; } }