fix(mobile): expand clickable area for session status bar collapse (#517)

This commit is contained in:
Jovines
2026-02-26 10:37:24 +02:00
committed by GitHub
parent 25ee06dae9
commit f372294800
@@ -902,7 +902,18 @@ function ExpandedView({
isExpanded={true}
/>
</div>
<div className="flex items-center gap-2 flex-shrink-0">
<div
className="flex items-center gap-2 flex-shrink-0 cursor-pointer !min-h-0"
onClick={onToggleCollapse}
tabIndex={0}
role="button"
onKeyDown={(e) => {
if (e.key === 'Enter' || e.key === ' ') {
e.preventDefault();
onToggleCollapse();
}
}}
>
<RunningIndicator count={runningCount} />
<UnreadIndicator count={unreadCount} />
<TokenUsageIndicator contextUsage={contextUsage} />