diff --git a/apps/web/src/components/combatant-row.tsx b/apps/web/src/components/combatant-row.tsx index a29f47c..17b9c50 100644 --- a/apps/web/src/components/combatant-row.tsx +++ b/apps/web/src/components/combatant-row.tsx @@ -430,7 +430,7 @@ function concentrationIconClass( dimmed: boolean, ): string { if (!isConcentrating) - return "opacity-0 group-hover:opacity-50 text-muted-foreground"; + return "opacity-0 pointer-coarse:opacity-50 group-hover:opacity-50 text-muted-foreground"; return dimmed ? "opacity-50 text-purple-400" : "opacity-100 text-purple-400"; }