feat: update navbar to cover top of the page

- Update the navbar to be sticky when scrolling the page and cover the top of the page.
- Fix the margins for every viewport.
This commit is contained in:
Hafid Nur
2025-03-16 19:19:44 +07:00
parent 9002e6a261
commit 6a1fa42956
2 changed files with 69 additions and 68 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import { Navbar } from '@imphnen-frontend-service/ui/organisms';
export const AppLayout: FC = (): ReactElement => {
return (
<main className="bg-primary-50 min-h-screen px-8 py-[60px]">
<main className="bg-primary-50 min-h-screen">
<Navbar />
<Outlet />
</main>