Skip to content

Fix invalid Tailwind color hover:bg-neutral-750 in CrewPanel.tsx #126

@khang859

Description

@khang859

Bug

File: src/renderer/src/components/star-command/CrewPanel.tsx, line 240

Problem: hover:bg-neutral-750 is not a valid Tailwind CSS color class. Tailwind's neutral palette only goes in increments of 100 (100, 200, 300, 400, 500, 600, 700, 800, 900). The value 750 does not exist and will have no visual effect.

Fix: Replace hover:bg-neutral-750 with either hover:bg-neutral-700 or hover:bg-neutral-800 depending on the desired hover darkness.

Impact: Cosmetic only — no functional impact. The hover background effect is simply not applied.

Found during review of PR #125.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions