diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-27 12:20:29 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-27 12:20:29 +1100 |
| commit | 3c8714c36aac69fd499b34cc0e68729bf71f7728 (patch) | |
| tree | b016b44be29d6811945cd0a33ccf6101e1ddd488 | |
| parent | launcher: file context menus (diff) | |
| download | caelestia-shell-3c8714c36aac69fd499b34cc0e68729bf71f7728.tar.gz caelestia-shell-3c8714c36aac69fd499b34cc0e68729bf71f7728.tar.bz2 caelestia-shell-3c8714c36aac69fd499b34cc0e68729bf71f7728.zip | |
notifpopups: fix shadow (ish)
Ugh shadow still gets cut off at the bottom of all popups except the last
| -rw-r--r-- | scss/notifpopups.scss | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scss/notifpopups.scss b/scss/notifpopups.scss index cec24a4..4daacaf 100644 --- a/scss/notifpopups.scss +++ b/scss/notifpopups.scss @@ -18,12 +18,18 @@ } .notifpopups { - min-width: lib.s(410); + min-width: lib.s(425); padding-left: lib.s(10); // So notifications can overshoot for init animation + // For shadow + & > :last-child .wrapper { + padding-bottom: lib.s(15); + } + .notification { .wrapper { padding-top: lib.s(10); + padding-left: lib.s(15); // For shadow } .inner { |