N-FIN-32: reduce padding on mobile devices
This commit is contained in:
parent
87ffc64995
commit
81c41567bc
2 changed files with 2 additions and 2 deletions
|
@ -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/>
|
||||
|
|
|
@ -16,7 +16,7 @@ export default function Navigation() {
|
|||
return (
|
||||
<div className="flex sticky items-center border-b border-border bg-background">
|
||||
<NavigationMenu>
|
||||
<NavigationMenuList className="flex w-screen items-center justify-between px-4 py-2">
|
||||
<NavigationMenuList className="flex w-screen items-center justify-between sm:px-4 py-2">
|
||||
<div className="inline-flex space-x-2">
|
||||
|
||||
<img src={'/logo_white.png'} alt="Finances" className="h-10 w-10 mx-3"/>
|
||||
|
|
Loading…
Add table
Reference in a new issue