Skip to content

Commit

Permalink
✨ Adjust header padding in RootLayout and ProblemsLayout. (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregkonush authored Sep 1, 2024
1 parent 5816f51 commit 466ada5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/ecran/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<body className={`${jetbrains.variable} font-mono`} suppressHydrationWarning>
<ThemeProvider attribute="class" defaultTheme="dark" enableSystem disableTransitionOnChange>
<header className="flex items-center space-x-10 px-5 py-4 border-b border-gray-800">
<header className="flex items-center space-x-10 px-10 py-4 border-b border-gray-800">
<div className="text-2xl uppercase">
<Link href="/">
proompteng<span className="text-indigo-400"></span>ai
Expand Down
2 changes: 1 addition & 1 deletion apps/ecran/src/app/problems/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export default async function ProblemsLayout({ children }: { children: React.ReactNode }) {
return <div className="flex flex-col p-5">{children}</div>
return <div className="flex flex-col p-10">{children}</div>
}

0 comments on commit 466ada5

Please sign in to comment.