N-FIN-32: reduce padding on mobile devices

This commit is contained in:
Markus Thielker 2024-03-13 22:51:53 +01:00
parent 87ffc64995
commit 81c41567bc
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ export default function RootLayout({
<html lang="en">
<body className={cn('dark', inter.className)}>
<Navigation/>
<main className="p-8">
<main className="p-4 sm:p-8">
{children}
</main>
<Toaster/>