1
0

Правки

This commit is contained in:
2026-01-21 12:46:43 +07:00
parent 8e3cd770df
commit 88189a3f04
6 changed files with 88 additions and 30 deletions

View File

@@ -316,15 +316,15 @@ onUnmounted(() => {
border-top: 1px solid rgba(255, 255, 255, 0.06);
}
/* Transition — плавное появление */
/* Transition — выезд справа для десктопа */
.panel-enter-active,
.panel-leave-active {
transition: opacity 0.2s ease;
transition: opacity 0.25s ease;
}
.panel-enter-active .panel,
.panel-leave-active .panel {
transition: opacity 0.2s ease, transform 0.2s ease;
transition: transform 0.25s ease;
}
.panel-enter-from,
@@ -334,8 +334,7 @@ onUnmounted(() => {
.panel-enter-from .panel,
.panel-leave-to .panel {
opacity: 0;
transform: scale(0.98);
transform: translateX(100%);
}
/* На мобильных убираем transform из анимации - он ломает layout в iOS PWA */