This is an automated email from the ASF dual-hosted git repository.

guanmingchiu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 57b3f2f6454 Fix main content margin to align with navigation sidebar 
width (#61614)
57b3f2f6454 is described below

commit 57b3f2f64540708bcb6d50b606731250e80c6f2f
Author: Yeonguk Choo <[email protected]>
AuthorDate: Sun Feb 8 15:30:26 2026 +0900

    Fix main content margin to align with navigation sidebar width (#61614)
---
 airflow-core/src/airflow/ui/src/layouts/BaseLayout.tsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/airflow-core/src/airflow/ui/src/layouts/BaseLayout.tsx 
b/airflow-core/src/airflow/ui/src/layouts/BaseLayout.tsx
index 1f2574cc858..74d6ca3ece3 100644
--- a/airflow-core/src/airflow/ui/src/layouts/BaseLayout.tsx
+++ b/airflow-core/src/airflow/ui/src/layouts/BaseLayout.tsx
@@ -54,8 +54,8 @@ export const BaseLayout = ({ children }: PropsWithChildren) 
=> {
     <LocaleProvider locale={i18n.language || "en"}>
       <Nav />
       <Box
-        _ltr={{ ml: 20 }}
-        _rtl={{ mr: 20 }}
+        _ltr={{ ml: 16 }}
+        _rtl={{ mr: 16 }}
         display="flex"
         flexDirection="column"
         h="100vh"

Reply via email to