From f2fe554d4e00fdb4d110bfee514272df2c7c42c5 Mon Sep 17 00:00:00 2001 From: Nicholas Barnett <n-barnett@hotmail.com> Date: Fri, 31 Jan 2025 14:41:47 -0600 Subject: [PATCH] feat: wp --- src/app/_components/NewNavBar/NavBar.tsx | 6 +++--- src/ui/theme/space.ts | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/_components/NewNavBar/NavBar.tsx b/src/app/_components/NewNavBar/NavBar.tsx index abfa02f54..8e3f592c1 100644 --- a/src/app/_components/NewNavBar/NavBar.tsx +++ b/src/app/_components/NewNavBar/NavBar.tsx @@ -13,14 +13,14 @@ import { SettingsPopover } from './SettingsPopover'; const DesktopNavBar = (props: any) => { return ( - <Flex width="full" h={10} alignItems="center" justifyContent="space-between" {...props}> + <Flex width="full" h={10} alignItems="center" justifyContent="space-between" {...props} gap={15}> <Flex alignItems="center" gap={6}> <Logo logoSize={10} /> <PagesSlidingMenu width={50} /> </Flex> - <Box flexGrow={1} flexShrink={1} maxWidth="474px"> + <Flex flexGrow={1} flexShrink={1} maxWidth="474px"> <Input placeholder="Explore" bg="surfaceSecondary" /> - </Box> + </Flex> <Flex gap={4}> <FeePopover /> <SettingsPopover /> diff --git a/src/ui/theme/space.ts b/src/ui/theme/space.ts index ad5f6ab46..c45e2d0ec 100644 --- a/src/ui/theme/space.ts +++ b/src/ui/theme/space.ts @@ -50,6 +50,7 @@ export const NEW_SPACE = { 8: { value: '2rem' }, // 32px 10: { value: '2.5rem' }, // 40px 12: { value: '3rem' }, // 48px + 15: { value: '3.75rem' }, // 60px 16: { value: '4rem' }, // 64px 18: { value: '4.5rem' }, // 72px 20: { value: '5rem' }, // 80px