Skip to content

Commit

Permalink
solved padding bug
Browse files Browse the repository at this point in the history
  • Loading branch information
HUSAM-07 committed Oct 19, 2024
1 parent 949c928 commit fb8215a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion public/sw.js

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

4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ export default function RootLayout({
return (
<html lang="en">
<body className={inter.className}>
<header className="flex justify-between items-center p-4 md:px-8 md:justify-start border-b border-gray-200">
<header className="flex justify-between items-center p-4 md:px-8 border-b border-gray-200">
<nav className="w-full">
<DesktopMenu />
<MobileMenu />
</nav>
</header>
<main>{children}</main>
<main className="max-w-full px-4 md:px-8">{children}</main>
<Footer />
</body>
</html>
Expand Down

0 comments on commit fb8215a

Please sign in to comment.