fix: remove notifications link from user menu, add view-all button to notification dropdown, fix admin link

This commit is contained in:
2026-06-14 09:31:27 -04:00
parent 74cf9739d6
commit 00bad074d3
3 changed files with 27 additions and 4 deletions

View File

@@ -3300,4 +3300,21 @@ input[type="range"]::-moz-range-track {
overflow-y: auto;
}
.notif-view-all {
display: flex;
align-items: center;
justify-content: center;
padding: 10px 16px;
font-size: 0.82rem;
color: var(--accent);
text-decoration: none;
border-top: 1px solid var(--border-color);
transition: background var(--transition);
}
.notif-view-all:hover {
background: var(--bg-hover);
color: var(--accent-hover);
}