Skip to content

Commit f66c666

Browse files
committed
fix(web): add breathing room to Discord setup wizard
- ol spacing: space-y-3 → space-y-4 (16 px between steps) - CardContent spacing: space-y-3 → space-y-5 (20 px between list and footer) - Footer walkthrough link: add border-t + pt-4 to visually separate it from the steps list https://claude.ai/code/session_01X74kb6YgwetxRSuj1U5NR4
1 parent 9e28fd2 commit f66c666

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/packages/web/src/pages/discord.page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,8 @@ function SetupWizard({ cfg }: { cfg: DiscordConfigRedacted }) {
319319
The bot isn't configured yet. Follow these steps to wire it up.
320320
</CardDescription>
321321
</CardHeader>
322-
<CardContent className="space-y-3">
323-
<ol className="space-y-3">
322+
<CardContent className="space-y-5">
323+
<ol className="space-y-4">
324324
{steps.map((step, i) => (
325325
<li key={i} className="flex items-start gap-3 text-sm">
326326
{step.done ? (
@@ -336,7 +336,7 @@ function SetupWizard({ cfg }: { cfg: DiscordConfigRedacted }) {
336336
</li>
337337
))}
338338
</ol>
339-
<p className="text-xs text-[var(--color-muted-foreground)]">
339+
<p className="text-xs text-[var(--color-muted-foreground)] border-t border-[var(--color-border)] pt-4">
340340
Full walkthrough:{' '}
341341
<a
342342
href="https://codercoco.github.io/game-server-deploy/setup"

0 commit comments

Comments
 (0)