feat: Implement foundational UI styling, shared components, and web platform structure.
All checks were successful
Build and Release / build-and-release (push) Successful in 14m40s

This commit is contained in:
Bryan1029384756
2026-02-19 16:03:54 -06:00
parent 65fa715fdf
commit 0e1b7f868a
4 changed files with 153 additions and 12 deletions

View File

@@ -3173,6 +3173,40 @@ body {
background-color: var(--brand-experiment-hover);
}
.update-progress {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
width: 100%;
}
.update-progress-bar-bg {
width: 100%;
height: 8px;
background-color: var(--bg-tertiary);
border-radius: 4px;
overflow: hidden;
}
.update-progress-bar-fill {
height: 100%;
background-color: var(--brand-experiment);
border-radius: 4px;
transition: width 0.2s ease;
}
.update-progress-text {
color: var(--header-secondary);
font-size: 13px;
}
.update-error-text {
color: var(--text-danger, #ed4245);
font-size: 13px;
margin: 8px 0 0;
}
/* ============================================
VOICE USER ITEM (sidebar)
============================================ */