diff options
| author | Sebastien Castiel <sebastien@castiel.me> | 2023-12-07 17:30:21 -0500 |
|---|---|---|
| committer | Sebastien Castiel <sebastien@castiel.me> | 2023-12-07 17:30:21 -0500 |
| commit | 61201c28646ccb3be155b84b2a95cbc4502e51e4 (patch) | |
| tree | 62c08fa4ca78baaa1a047f8337a509ac2379bb77 | |
| parent | 1bc4acd67aec9abcb797c7c2c4e1a43523ff72d7 (diff) | |
Increase navbar size
| -rw-r--r-- | src/app/layout.tsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e86728f..799f8c5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -47,8 +47,9 @@ export default function RootLayout({ <h1> <Image src="/logo-with-text.png" - width={(30 * 522) / 180} - height={30} + className="m-1" + width={(35 * 522) / 180} + height={35} alt="Spliit" /> </h1> @@ -61,7 +62,7 @@ export default function RootLayout({ </li> </ul> </header> - <div className="max-w-screen-md mx-auto p-4 pt-16">{children}</div> + <div className="max-w-screen-md mx-auto p-4 pt-20">{children}</div> </body> </html> ) |
