Center desktop environment preferences card correctly on screen

Adjust padding in DistroMatch and remove redundant padding in home.tsx to ensure proper card centering.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: e522d728-b28a-437f-b576-83935afe7ea0
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: 41cbce39-6736-4085-8f37-9c8c9e0a7041
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/55e426a8-5a2b-421b-8bd4-30481ae0063b/e522d728-b28a-437f-b576-83935afe7ea0/RXISN11
Replit-Helium-Checkpoint-Created: true
This commit is contained in:
yusufipk
2025-12-17 14:13:37 +00:00
parent 3498832ec8
commit 149bd32f3b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -144,7 +144,7 @@ export default function DistroMatch() {
<div className="relative min-h-screen"> <div className="relative min-h-screen">
<DynamicBackground colors={bgColors} /> <DynamicBackground colors={bgColors} />
<div className="relative z-10 flex flex-col items-center justify-center min-h-screen py-8"> <div className="relative z-10 flex flex-col items-center justify-center min-h-screen pt-24 pb-8">
{stage === 'de' && ( {stage === 'de' && (
<> <>
<motion.div <motion.div
+1 -1
View File
@@ -10,7 +10,7 @@ export default function Home() {
return ( return (
<div className="relative min-h-screen w-full overflow-hidden"> <div className="relative min-h-screen w-full overflow-hidden">
<Header /> <Header />
<main className="pt-16"> <main>
<DistroMatch /> <DistroMatch />
</main> </main>
</div> </div>