fix: neutral delete button style, stack input above buttons on mobile
This commit is contained in:
parent
ee9c88e9ac
commit
4015f35ecb
@ -1370,14 +1370,18 @@
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.chat-compose__row {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.chat-compose__actions {
|
||||
gap: 4px;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.chat-compose__actions .btn {
|
||||
padding: 4px 8px;
|
||||
font-size: 13px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.chat-compose__actions .btn-kbd {
|
||||
|
||||
@ -367,7 +367,7 @@ export function renderChat(props: ChatProps) {
|
||||
${props.onDelete
|
||||
? html`
|
||||
<button
|
||||
class="btn danger"
|
||||
class="btn"
|
||||
?disabled=${!props.connected || isBusy || props.isMainSession}
|
||||
@click=${() => {
|
||||
if (confirm(`Delete session "${props.sessionKey}"?`)) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user