Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
counter-increment: step;

&:before {
@apply absolute inline-flex h-9 w-9 items-center justify-center rounded-full border border-zinc-200 bg-white text-center -indent-px font-mono text-base font-medium dark:border-zinc-800 dark:bg-zinc-950;
@apply absolute inline-flex h-9 w-9 items-center justify-center rounded-full border border-border bg-background text-center -indent-px font-mono text-base font-medium dark:border-zinc-800 dark:bg-zinc-950;
Copy link

Copilot AI Jan 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The dark mode classes dark:border-zinc-800 and dark:bg-zinc-950 are redundant after switching to border-border and bg-background. These theme variables already handle both light and dark modes automatically. The dark mode classes should be removed to avoid conflicts and ensure consistent theming behavior.

Suggested change
@apply absolute inline-flex h-9 w-9 items-center justify-center rounded-full border border-border bg-background text-center -indent-px font-mono text-base font-medium dark:border-zinc-800 dark:bg-zinc-950;
@apply absolute inline-flex h-9 w-9 items-center justify-center rounded-full border border-border bg-background text-center -indent-px font-mono text-base font-medium;

Copilot uses AI. Check for mistakes.
@apply ml-[-50px] mt-[-4px];
content: counter(step);
}
Expand Down
Loading
Loading