Increase navbar size

This commit is contained in:
Sebastien Castiel
2023-12-07 17:30:21 -05:00
parent 1bc4acd67a
commit 61201c2864

View File

@@ -47,8 +47,9 @@ export default function RootLayout({
<h1> <h1>
<Image <Image
src="/logo-with-text.png" src="/logo-with-text.png"
width={(30 * 522) / 180} className="m-1"
height={30} width={(35 * 522) / 180}
height={35}
alt="Spliit" alt="Spliit"
/> />
</h1> </h1>
@@ -61,7 +62,7 @@ export default function RootLayout({
</li> </li>
</ul> </ul>
</header> </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> </body>
</html> </html>
) )