From 5540baf14cd0c833698e1172511c0a5da928ac95 Mon Sep 17 00:00:00 2001 From: Lukas Date: Fri, 3 Apr 2026 01:02:16 +0200 Subject: [PATCH] Show concentration icon on mobile as grey affordance On touch devices, the Brain icon was fully hidden (opacity-0) unlike the edit and condition buttons. Add pointer-coarse:opacity-50 so it appears as a discoverable grey icon, matching the other action buttons. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/web/src/components/combatant-row.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; }