From 6fc00e43ceb27aac045c9ddcaf57abccd0cf8da0 Mon Sep 17 00:00:00 2001 From: Maksym Korchynskyi Date: Sun, 19 Jan 2025 14:56:41 +0200 Subject: [PATCH] made animation smoother --- src/styles/todo-list.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/todo-list.scss b/src/styles/todo-list.scss index b38b964ae..99ad997cc 100644 --- a/src/styles/todo-list.scss +++ b/src/styles/todo-list.scss @@ -106,7 +106,7 @@ .item-enter-active { max-height: 58px; - transition: max-height 0.1s linear; + transition: max-height 0.3s linear; } .item-exit { @@ -116,5 +116,5 @@ .item-exit-active { max-height: 0; - transition: max-height 0.1s linear; + transition: max-height 0.3s linear; }