Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.

Commit a71cd8b

Browse files
committed
Fix cursor: pointer
1 parent 4850d90 commit a71cd8b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/TodoItem.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,12 @@ const TodoItem = ({
6464
>
6565
<span
6666
css={[
67+
css`
68+
cursor: pointer;
69+
`,
6770
done &&
6871
css`
6972
color: ${colors('gray')};
70-
cursor: pointer;
7173
`
7274
]}
7375
onClick={() => dispatch({ type: 'toggle', index })}

0 commit comments

Comments
 (0)