From d69181cfefe837f1dfb64d76dcf56eac33cc046f Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Sun, 1 Oct 2023 15:56:29 +0300 Subject: [PATCH] added helper class to disable the tabs animation to avoid the flickering --- ui/src/scss/_tabs.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ui/src/scss/_tabs.scss b/ui/src/scss/_tabs.scss index 4aee1b93..093521ec 100644 --- a/ui/src/scss/_tabs.scss +++ b/ui/src/scss/_tabs.scss @@ -134,6 +134,12 @@ $tabContentAnimationSpeed: 0.2s; margin-bottom: 0; } } + &.no-animations { + > .tab-item.active { + opacity: 1; + animation: none; + } + } } .tabs {