PWA модуль
Теперь проект может быть установлен как приложение на телефон
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user