Skip to content

Commit b192a4a

Browse files
committed
Fix the width of the containers to be consistent
1 parent 9b1492a commit b192a4a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ function App() {
348348
</header>
349349

350350
{/* Main content */}
351-
<main className="container mx-auto px-4 py-6">
351+
<main className="container mx-auto py-6">
352352
{/* Filter bar */}
353353
<div className="mb-6">
354354
<FilterBar

src/components/Board/Board.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ export function Board({
508508
role="main"
509509
aria-label="Kanban Board"
510510
aria-busy={isLoading}
511-
className="min-h-screen bg-bg-primary p-6"
511+
className="min-h-screen bg-bg-primary py-6"
512512
>
513513
{/* Clear confirmation banner */}
514514
{showClearConfirmation && (

0 commit comments

Comments
 (0)