1
0

PWA модуль

Теперь проект может быть установлен как приложение на телефон
This commit is contained in:
2026-01-16 16:12:34 +07:00
parent 25663a7aa4
commit c46fd3952e
16 changed files with 5388 additions and 52 deletions

View File

@@ -394,6 +394,8 @@ defineExpose({ saveTask, deleteTask, archiveTask })
display: flex;
flex-direction: column;
overflow: hidden;
/* Отступ снизу для footer (70px) + навигации (64px) + safe-area */
padding-bottom: calc(70px + 64px + var(--safe-area-bottom, 0px));
}
.board.mobile .columns {
@@ -417,16 +419,19 @@ defineExpose({ saveTask, deleteTask, archiveTask })
display: none;
}
/* Мобильный футер с индикатором колонок */
/* Мобильный футер с индикатором колонок - фиксированный над навигацией */
.mobile-column-footer {
position: fixed;
left: 0;
right: 0;
bottom: calc(64px + var(--safe-area-bottom, 0px));
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
padding: 12px 16px;
background: var(--bg-body);
flex-shrink: 0;
min-height: 60px;
z-index: 100;
}
.current-column-title {