1
0

Правки фронта

Дополнительные адаптации для мобилки
This commit is contained in:
2026-01-15 10:52:25 +07:00
parent 5018a2d123
commit 6f35b84725
7 changed files with 693 additions and 231 deletions

View File

@@ -311,15 +311,15 @@ onUnmounted(() => {
border-top: 1px solid rgba(255, 255, 255, 0.06);
}
/* Transition */
/* Transition — плавное появление */
.panel-enter-active,
.panel-leave-active {
transition: all 0.3s ease;
transition: opacity 0.2s ease;
}
.panel-enter-active .panel,
.panel-leave-active .panel {
transition: transform 0.3s ease;
transition: opacity 0.2s ease, transform 0.2s ease;
}
.panel-enter-from,
@@ -329,7 +329,8 @@ onUnmounted(() => {
.panel-enter-from .panel,
.panel-leave-to .panel {
transform: translateX(100%);
opacity: 0;
transform: scale(0.98);
}
/* ========== MOBILE: Fullscreen ========== */