diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-14 00:23:18 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-14 00:23:18 +1100 |
| commit | a5e583e2bc47247a22877168ea7d9e44a30719ae (patch) | |
| tree | 14fea0d2801f47ba3f92a5d81033886ede4ec597 /modules/notifpopups.tsx | |
| parent | app launcher (diff) | |
| download | caelestia-shell-a5e583e2bc47247a22877168ea7d9e44a30719ae.tar.gz caelestia-shell-a5e583e2bc47247a22877168ea7d9e44a30719ae.tar.bz2 caelestia-shell-a5e583e2bc47247a22877168ea7d9e44a30719ae.zip | |
notifpopups: increase init anim duration
Diffstat (limited to 'modules/notifpopups.tsx')
| -rw-r--r-- | modules/notifpopups.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/notifpopups.tsx b/modules/notifpopups.tsx index 7d92824..a46f218 100644 --- a/modules/notifpopups.tsx +++ b/modules/notifpopups.tsx @@ -101,7 +101,7 @@ class NotifPopup extends Widget.Box { const width = this.get_preferred_width()[1]; this.css = `margin-left: ${width}px; margin-right: -${width}px;`; timeout(1, () => { - this.css = `transition: 150ms cubic-bezier(0.05, 0.9, 0.1, 1.1); margin-left: 0; margin-right: 0;`; + this.css = `transition: 300ms cubic-bezier(0.05, 0.9, 0.1, 1.1); margin-left: 0; margin-right: 0;`; }); // Close popup after timeout if transient |