From 9acdd3cb137e3f4ddac6bc937c90fbbda9d9cda5 Mon Sep 17 00:00:00 2001 From: Franzz Date: Fri, 3 Jul 2026 20:29:44 +0200 Subject: [PATCH] Fix panel translate (X) animation --- src/styles/_mobile.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/_mobile.scss b/src/styles/_mobile.scss index c2ec0cc..cb8e9c0 100644 --- a/src/styles/_mobile.scss +++ b/src/styles/_mobile.scss @@ -52,7 +52,7 @@ &.with-right-panel { .panel.panel-left { - transform: translateX(-200vw); + transform: translateX(-200%); } .panel.panel-right { @@ -66,7 +66,7 @@ } .panel.panel-right { - transform: translateX(200vw); + transform: translateX(200%); } } }