Adjust spacing on CanvasHeaderNav items

This commit is contained in:
Daniel S. Hansen
2025-07-14 13:13:47 -07:00
parent bc83710acc
commit 94aa70a307
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ const navItems = [
export function CanvasHeaderNav() { export function CanvasHeaderNav() {
return ( return (
<HStack as="nav" spacing={6}> <HStack as="nav" gap="8">
{navItems.map(({ label, href }) => ( {navItems.map(({ label, href }) => (
<Link key={href} href={href} fontWeight="medium"> <Link key={href} href={href} fontWeight="medium">
{label} {label}
+1 -1
View File
@@ -38,7 +38,7 @@ export default function Header() {
</Menu.Positioner> </Menu.Positioner>
</Portal> </Portal>
</Menu.Root> </Menu.Root>
{/* End drop down menu */}
</HStack> </HStack>
</Button> </Button>
</Box> </Box>