Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/renderer/components/layout/AppLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ interface IAppLayout {
export const AppLayout: FC<IAppLayout> = ({ children }) => {
return (
<div className="flex flex-col min-h-screen bg-gitify-background">
<Sidebar />
{/* Content area with left padding to make space for the sidebar */}
{/* Content first in DOM so initial focus won't land on sidebar buttons */}
<div className="flex-1 pl-sidebar">{children}</div>

<Sidebar />
</div>
);
};

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.