diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2024-10-29 13:01:10 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2024-10-29 13:01:10 -0400 |
commit | d270842f3ff338c530519eef26229d8a2d35cab8 (patch) | |
tree | 93a2d1f0e67560401e8705c22b00c4a88aa53d00 /extension/src/index.css | |
parent | b821506236fd69017ef6e1f0e638d2f5940a5b76 (diff) | |
download | bookmarks-home-d270842f3ff338c530519eef26229d8a2d35cab8.tar.gz bookmarks-home-d270842f3ff338c530519eef26229d8a2d35cab8.tar.bz2 bookmarks-home-d270842f3ff338c530519eef26229d8a2d35cab8.zip |
settings sidebar animation
Diffstat (limited to 'extension/src/index.css')
-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 */ |