Skip to content

Commit

Permalink
fix(overflow): overflow on main edit now long shows on larger text
Browse files Browse the repository at this point in the history
  • Loading branch information
f-steel committed Jul 4, 2024
1 parent dd13912 commit a8ab2b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/docs/[mode]/[branch]/[[...path]]/@edit/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default async function Page({
} as ContentItem;
const branches = await getBranches(contentConfig.owner, contentConfig.repo);
return (
<main>
<main style={{ overflow: 'hidden' }}>
<TopBar
// onNavButtonClick={handleOnNavButtonClick}
navOpen={false}
Expand Down

0 comments on commit a8ab2b9

Please sign in to comment.