File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
airflow-core/src/airflow/ui/src/layouts Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ export const BaseLayout = ({ children }: PropsWithChildren) => {
34
34
return (
35
35
< >
36
36
< Nav />
37
- < Box display = "flex" flexDirection = "column" h = "100vh" ml = { 20 } p = { 3 } >
37
+ < Box _ltr = { { ml : 20 } } _rtl = { { mr : 20 } } display = "flex" flexDirection = "column" h = "100vh" p = { 3 } >
38
38
{ children ?? < Outlet /> }
39
39
</ Box >
40
40
</ >
Original file line number Diff line number Diff line change @@ -40,11 +40,18 @@ export const Nav = () => {
40
40
41
41
return (
42
42
< VStack
43
+ _ltr = { {
44
+ left : 0 ,
45
+ right : "auto" ,
46
+ } }
47
+ _rtl = { {
48
+ left : "auto" ,
49
+ right : 0 ,
50
+ } }
43
51
alignItems = "center"
44
52
bg = "blue.muted"
45
53
height = "100%"
46
54
justifyContent = "space-between"
47
- left = { 0 }
48
55
position = "fixed"
49
56
py = { 3 }
50
57
top = { 0 }
You can’t perform that action at this time.
0 commit comments