diff options
-rw-r--r-- | extension/src/index.css | 7 |
1 files changed, 4 insertions, 3 deletions
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 */ |