Skip to content

Commit

Permalink
💄style : fix global layout errors
Browse files Browse the repository at this point in the history
Fix crushing due to incorrect width adjustment

Related issue: YJU-OKURA#33
  • Loading branch information
Regulus0811 committed Feb 20, 2024
1 parent 686b11f commit a9a264f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function RootLayout({children}: {children: React.ReactNode}) {
<div className="w-72 fixed">
<Navbar />
</div>
<div className="w-5/6 pl-72">{children}</div>
<div className="w-full pl-72">{children}</div>
</div>
</body>
</html>
Expand Down

0 comments on commit a9a264f

Please sign in to comment.