diff options
Diffstat (limited to 'src/components/Layout/Header')
-rw-r--r-- | src/components/Layout/Header/index.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/Layout/Header/index.tsx b/src/components/Layout/Header/index.tsx index 8ef114b44..44faa9649 100644 --- a/src/components/Layout/Header/index.tsx +++ b/src/components/Layout/Header/index.tsx @@ -23,6 +23,7 @@ import {ArrowLeft_Stroke2_Corner0_Rounded as ArrowLeft} from '#/components/icons import {Menu_Stroke2_Corner0_Rounded as Menu} from '#/components/icons/Menu' import { BUTTON_VISUAL_ALIGNMENT_OFFSET, + CENTER_COLUMN_OFFSET, HEADER_SLOT_SIZE, SCROLLBAR_OFFSET, } from '#/components/Layout/const' @@ -65,7 +66,7 @@ export function Outer({ gtMobile && [a.mx_auto, {maxWidth: 600}], !isWithinOffsetView && { transform: [ - {translateX: centerColumnOffset ? -150 : 0}, + {translateX: centerColumnOffset ? CENTER_COLUMN_OFFSET : 0}, {translateX: web(SCROLLBAR_OFFSET) ?? 0}, ], }, |