From 261efde164c4225e42eca0d8eb6c8e1bdbceb79e Mon Sep 17 00:00:00 2001 From: Cloudburst <18114966+C10udburst@users.noreply.github.com> Date: Mon, 3 Oct 2022 10:54:08 +0200 Subject: [PATCH] improve and extend the timeout --- src/pages/repos.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pages/repos.css b/src/pages/repos.css index 5416aa8..808bfc0 100644 --- a/src/pages/repos.css +++ b/src/pages/repos.css @@ -1,6 +1,6 @@ -@keyframes five-s-hide { +@keyframes timeout-hide { 0% { } - 80% { } + 99% { } 100% { height: 0; padding: 0; @@ -8,13 +8,13 @@ } } -@keyframes five-s-show { +@keyframes timeout-show { 0% { height: 0; padding: 0; margin: 0; } - 80% { + 99% { height: 0; padding: 0; margin: 0; @@ -23,10 +23,10 @@ } .swap-child > *:nth-child(1) { - animation: five-s-hide 5s linear 0s 1 normal forwards; + animation: timeout-hide 10s linear 0s 1 normal forwards; overflow: hidden; } .swap-child > *:nth-child(2) { - animation: five-s-show 5s linear 0s 1 normal forwards; + animation: timeout-show 10s linear 0s 1 normal forwards; overflow: hidden; } \ No newline at end of file