From d229e3d0ea01507f85d590f736e94520464e1c1a Mon Sep 17 00:00:00 2001 From: Professional Date: Fri, 23 May 2025 20:20:01 +0700 Subject: [PATCH] =?UTF-8?q?=D1=84=D0=B8=D0=BA=D1=81=20=D0=BF=D0=BE=D0=BB?= =?UTF-8?q?=D1=8F=20=D0=B2=D0=B2=D0=BE=D0=B4=D0=B0=20=D1=81=D0=BE=D0=BE?= =?UTF-8?q?=D0=B1=D1=89=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ChatView.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/ChatView.vue b/src/views/ChatView.vue index cd5731c..729e635 100644 --- a/src/views/ChatView.vue +++ b/src/views/ChatView.vue @@ -815,6 +815,7 @@ const handleClickOutsideContextMenu = (event) => { position: relative; display: flex; flex-direction: column; + padding-bottom: calc(70px + var(--nav-height, 60px)); /* Добавляем отступ внизу для поля ввода и навигационной панели */ } /* Состояния загрузки и ошибки */ @@ -1065,9 +1066,11 @@ const handleClickOutsideContextMenu = (event) => { background: white; border-top: 1px solid rgba(0, 0, 0, 0.1); padding: 0.8rem 1rem; - position: sticky; + position: fixed; /* Меняем со sticky на fixed для надежной фиксации */ bottom: 0; - z-index: 10; + left: 0; + right: 0; + z-index: 100; /* Увеличиваем z-index, чтобы блок был над всеми элементами */ max-width: 800px; margin: 0 auto; width: 100%;