Skip to content

Commit

Permalink
fix: increase sidebar padding so it looks better (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhu2000 authored Feb 15, 2023
1 parent 8148408 commit e88d905
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ export function Layout({ children }: PropsWithChildren) {
return (
<div>
<div className="fixed inset-y-0 flex w-40 flex-col bg-gray-200">
<div className="flex h-16 items-center px-2 font-medium">
<div className="flex h-16 items-center px-4 font-medium">
{/* TODO: update logo */}
<DocumentMagnifyingGlassIcon className="mr-2 h-6 w-6" aria-hidden="true" />
Kube Knots
</div>

<div className="flex flex-1 flex-col overflow-y-auto">
<nav className="flex-1 space-y-1 px-2 py-4">
<nav className="flex-1 space-y-1 p-4">
{sections.map(({ title, routes }) => (
<span key={title}>
<h1 className="mt-4 font-bold">{title}</h1>
Expand Down

0 comments on commit e88d905

Please sign in to comment.