Skip to content

Commit 17f3a08

Browse files
committed
Add cursor-pointer to stepped nav on install page
1 parent 0fd0b89 commit 17f3a08

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/ui/SteppedNav.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const defaultActive =
7979
disabled={!s.hasContent}
8080
class:list={[
8181
"group flex items-center gap-4 text-left transition-colors duration-fast ease-out-quart",
82-
!s.hasContent && "cursor-not-allowed",
82+
s.hasContent ? "cursor-pointer" : "cursor-not-allowed",
8383
]}
8484
aria-pressed={s.id === defaultActive ? "true" : "false"}
8585
>

0 commit comments

Comments
 (0)