Channels UI + read/unread + unique views + style polish

This commit is contained in:
DrygMira
2026-04-23 13:36:01 +03:00
parent 78d6124f2a
commit c0dfa6c7ab
25 changed files with 2369 additions and 145 deletions
+2 -2
View File
@@ -19,7 +19,7 @@ function renderList(container) {
export function render() {
const screen = document.createElement('section');
screen.className = 'stack';
screen.className = 'stack notifications-screen';
screen.append(renderHeader({ title: 'Уведомления' }));
@@ -31,7 +31,7 @@ export function render() {
`;
const list = document.createElement('div');
list.className = 'stack';
list.className = 'stack notifications-list';
renderList(list);
tabs.querySelectorAll('.tab-btn').forEach((btn) => {