From d270842f3ff338c530519eef26229d8a2d35cab8 Mon Sep 17 00:00:00 2001 From: sowgro Date: Tue, 29 Oct 2024 13:01:10 -0400 Subject: settings sidebar animation --- extension/src/index.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'extension') diff --git a/extension/src/index.css b/extension/src/index.css index 4ff40f2..20d7bf2 100644 --- a/extension/src/index.css +++ b/extension/src/index.css @@ -24,12 +24,13 @@ body { display: flex; flex-direction: column; right: 0; - animation: slideIn; + animation: slideIn 0.3s ease-in-out; + } @keyframes slideIn { - from { width: 0; } - to {width: 300px} + from { transform: translateX(100%); } + to { transform: translateX( 0% ); } } /* Folder */ -- cgit v1.2.3