fix: desktop layout

This commit is contained in:
Adam 2025-12-12 14:16:36 -06:00
parent bf420e7df6
commit f7acc34327
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
2 changed files with 6 additions and 2 deletions

View file

@ -270,12 +270,15 @@
}
[data-slot="session-turn-response-section"] {
width: 100%;
width: calc(100% + 9px);
min-width: 0;
margin-left: -9px;
padding-left: 9px;
}
[data-slot="session-turn-collapsible"] {
gap: 32px;
overflow: visible;
}
[data-slot="session-turn-collapsible-trigger-content"] {
@ -284,6 +287,7 @@
align-items: center;
gap: 4px;
color: var(--text-weak);
margin-left: -9px;
[data-component="spinner"] {
width: 12px;

View file

@ -183,7 +183,7 @@ export function SessionTurn(
setStore("status", rawStatus())
lastStatusChange = Date.now()
statusTimeout = undefined
}, 1000 - timeSinceLastChange) as unknown as number
}, 2500 - timeSinceLastChange) as unknown as number
}
})