Skip to content

Commit

Permalink
add margin to nav at bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
sebald committed Jul 31, 2023
1 parent 4438367 commit e472738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/app/_components/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const Navigation = ({ onClick }: NavigationProps) => {
const navigation = useNavigation();

return (
<nav className="flex flex-col gap-10 pl-4 pr-11 pt-8">
<nav className="mb-12 flex flex-col gap-10 pl-4 pr-11 pt-8">
{navigation.map(section => (
<div key={section.name} className="flex flex-col gap-2">
<div className="font-semibold">{section.name}</div>
Expand Down

0 comments on commit e472738

Please sign in to comment.