From fc20768ff8c44304dbca6adca488b9f5b67a9237 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/5] 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 739b7f172..a12c541d9 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -556,6 +556,13 @@ footer svg { /* .footer .footer__block { display: block; } */ + .footer__copyright+div { + text-align: -webkit-center; + } + + .footer__icons.footer { + text-align: -webkit-center; + } } /* Docs */ From 572c5cd829bc3080a02a7c8d81f094543d5d5562 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/5] 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 0ff78a9b5..e0ab2af05 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -310,7 +310,7 @@ module.exports = { -
+ From 3cee6567b847e459006c508c186cee420bee7c4c 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/5] 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 a12c541d9..451508f08 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -557,7 +557,7 @@ footer svg { display: block; } */ .footer__copyright+div { - text-align: -webkit-center; + text-align: center; } .footer__icons.footer { From a11b5b6c0631fa45b4c207ac42456397b380331a 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/5] 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 451508f08..041229f55 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -561,7 +561,7 @@ footer svg { } .footer__icons.footer { - text-align: -webkit-center; + text-align: center; } } From 7d623f02b56c775537426ecc2371e95e0eb73df0 Mon Sep 17 00:00:00 2001 From: yk00004 Date: Fri, 10 Apr 2026 10:40:44 +0530 Subject: [PATCH 5/5] 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 041229f55..68acdba2a 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -556,12 +556,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; } }