feat: add Create Session button to empty state, move refresh to header

This commit is contained in:
Nathan Flurry 2026-01-25 13:23:05 -08:00
parent 241bea6eb9
commit 2e47f9cf8d
2 changed files with 47 additions and 26 deletions

View file

@ -396,6 +396,31 @@
flex-shrink: 0;
}
.sidebar-header-actions {
display: flex;
align-items: center;
gap: 4px;
}
.sidebar-icon-btn {
width: 24px;
height: 24px;
background: transparent;
border: 1px solid var(--border-2);
border-radius: 4px;
color: var(--muted);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all var(--transition);
}
.sidebar-icon-btn:hover {
border-color: var(--accent);
color: var(--accent);
}
.sidebar-title {
font-size: 11px;
font-weight: 600;
@ -495,16 +520,6 @@
font-size: 11px;
}
.sidebar-refresh {
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
padding: 8px;
border-top: 1px solid var(--border);
flex-shrink: 0;
}
/* Chat Panel */
.chat-panel {
display: flex;