Files
GearBox/.planning/todos/pending/2026-04-10-add-cursor-pointer-to-all-clickable-links.md

780 B

created, title, area, files
created title area files
2026-04-10T09:17:31.682Z Add cursor pointer to all clickable links ui

Problem

Clickable links across multiple pages in the app do not consistently show cursor: pointer styling. Users expect the cursor to change to a pointer when hovering over clickable elements, but some links/buttons may use default cursor. This needs a sweep across all pages to ensure consistent hover behavior.

Solution

Audit all pages for clickable elements (links, buttons, interactive spans/divs) and ensure they have cursor: pointer via Tailwind's cursor-pointer class or appropriate element semantics (<a>, <button> naturally get pointer cursor). Focus on custom clickable elements that may be using <div> or <span> with onClick handlers.