fix(FN-4352): correct compact secondary control sizing on mobile

Fusion-Task-Id: FN-4352
Fusion-Task-Lineage: 429612a4-fe44-4ac0-8d9b-d0d6c1743b36
This commit is contained in:
Fusion
2026-05-13 11:41:11 -07:00
committed by gsxdsm
parent 5d8339c2ec
commit 799318fbfd
2 changed files with 6 additions and 5 deletions

View File

@@ -1666,12 +1666,13 @@
opacity: 1;
}
/* FN-4352: secondary hover-revealed row action stays compact (inflated by FN-3628). */
.chat-message-copy-action {
opacity: 1;
width: calc(var(--space-lg) * 2.25);
height: calc(var(--space-lg) * 2.25);
min-width: calc(var(--space-lg) * 2.25);
min-height: calc(var(--space-lg) * 2.25);
width: calc(var(--space-lg) * 2);
height: calc(var(--space-lg) * 2);
min-width: calc(var(--space-lg) * 2);
min-height: calc(var(--space-lg) * 2);
}
.chat-tool-calls-group-summary,

View File

@@ -569,5 +569,5 @@
justify-content: space-between;
}
/* FN-4352: secondary in-row expand control stays compact per AGENTS.md convention (inflated by FN-4236). */
/* FN-4352: secondary in-row expand control intentionally has no mobile size override (inflated by FN-4236). */
}