Додан моніторінг застосунку

Додани веб компоненти карточок територій та повідомлень
This commit is contained in:
2025-12-08 00:14:56 +02:00
parent e41590546c
commit 85483b85bb
206 changed files with 2370 additions and 595 deletions

View File

@@ -0,0 +1,3 @@
<div class="page-schedule-constructor">
</div>

View File

@@ -0,0 +1,8 @@
const Schedule_constructor = {
init: async () => {
let html = await fetch('/lib/pages/schedule/constructor/index.html').then((response) => response.text());
app.innerHTML = html;
}
}

View File

@@ -0,0 +1,6 @@
.page-schedule-constructor {
width: calc(100% - 40px);
display: flex;
flex-direction: column;
margin: 20px 20px 0 20px;
}