This is an automated email from the ASF dual-hosted git repository.
shuai pushed a commit to branch test
in repository https://gitbox.apache.org/repos/asf/answer.git
The following commit(s) were added to refs/heads/test by this push:
new f88ff2e2 fix: footer width should be aligned with main content
f88ff2e2 is described below
commit f88ff2e2ca543cb45a62e9347f3e9161b0818f9d
Author: shuai <[email protected]>
AuthorDate: Fri Dec 12 17:37:21 2025 +0800
fix: footer width should be aligned with main content
---
ui/src/pages/SideNavLayout/index.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/src/pages/SideNavLayout/index.tsx
b/ui/src/pages/SideNavLayout/index.tsx
index 907b9b28..b9bc38b9 100644
--- a/ui/src/pages/SideNavLayout/index.tsx
+++ b/ui/src/pages/SideNavLayout/index.tsx
@@ -38,7 +38,7 @@ const Index: FC = () => {
<Outlet />
</div>
</div>
- <div className="d-flex justify-content-center">
+ <div className="d-flex justify-content-center px-0 px-md-4">
<div className="main-mx-with">
<Footer />
</div>