feat: Enhance App component with dynamic panel tabs for control, voice, stats, groups, and tasks

This commit is contained in:
MayaTheShy
2026-02-19 22:54:48 -05:00
parent 73d098ca33
commit 546e17e6d2
2 changed files with 110 additions and 1 deletions

View File

@@ -73,6 +73,49 @@
.panel-container {
background: #0f172a;
overflow: hidden;
display: flex;
flex-direction: column;
}
.panel-tabs {
display: flex;
gap: 0.25rem;
padding: 0.5rem;
background: #1e293b;
border-bottom: 2px solid #334155;
overflow-x: auto;
flex-shrink: 0;
}
.panel-tabs button {
padding: 0.5rem 1rem;
border: none;
background: #334155;
color: #94a3b8;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
white-space: nowrap;
}
.panel-tabs button:hover {
background: #475569;
color: #e5e7eb;
}
.panel-tabs button.active {
background: #3b82f6;
color: white;
box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}
.panel-content-wrapper {
flex: 1;
overflow: hidden;
display: flex;
flex-direction: column;
}
/* Scrollbar styling */