Skip to content

Commit

Permalink
Fix header spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
barthuijgen committed Nov 18, 2024
1 parent 274dd12 commit dbd30f3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/blueprints/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const MenuItem: React.FC<{ href: string }> = ({ children, href }) => (
<Link href={href} passHref>
{/* eslint-disable-next-line jsx-a11y/anchor-is-valid */}
<a>
<Text mt={{ base: 4, md: 0 }} mr={6} display="block">
<Text mt={{ base: 4, md: 0 }} display="block">
{children}
</Text>
</a>
Expand Down Expand Up @@ -87,6 +87,10 @@ export const Header: React.FC = (props) => {
base: show ? "block" : "none",
md: "flex",
}}
alignItems="center"
css={{
gap: "16px",
}}
width={{ base: "full", md: "auto" }}
>
<Buttons />
Expand Down

0 comments on commit dbd30f3

Please sign in to comment.