feat: add Notifications settings tab

This commit is contained in:
Brian Krabach
2026-03-30 00:18:05 -07:00
parent c955aadad1
commit 2f909eae89
6 changed files with 382 additions and 1 deletions
+35
View File
@@ -1091,6 +1091,41 @@ body {
cursor: pointer;
}
/* ============================================================
Notifications tab controls
============================================================ */
.settings-notification-status {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 4px;
}
.settings-status-text {
font-size: 12px;
color: var(--text-muted);
}
.settings-action-btn {
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: 4px;
color: var(--text);
font-size: 12px;
padding: 4px 10px;
cursor: pointer;
}
.settings-action-btn:hover {
border-color: var(--accent);
}
.settings-action-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
/* ============================================================
Responsive overlay sidebar at <960px
============================================================ */