Skip to content

Commit 25dd03a

Browse files
CoderCococlaude
andcommitted
revert(web): simplify <main> padding back to p-8 shorthand
The px-8 py-8 workaround was added after p-8 appeared broken, but the root cause was an unlayered CSS reset clobbering Tailwind's physical shorthand utilities (fixed in a prior commit). With the reset gone, p-8 works correctly and is the simpler form. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent bb81dc7 commit 25dd03a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/packages/web/src/components/app-layout.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export function AppLayout({ children }: { children: ReactNode }) {
128128
</header>
129129

130130
{/* Page content */}
131-
<main className="flex-1 overflow-auto px-8 py-8">
131+
<main className="flex-1 overflow-auto p-8">
132132
{children}
133133
</main>
134134
</div>

0 commit comments

Comments
 (0)