diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-14 12:45:40 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-14 12:45:40 +1100 |
| commit | a8f82410065774ae7edb2f65ed379a0fadcce38d (patch) | |
| tree | adcc75cbd6665a07298b895221cc0599bdbaed06 /scss/notifpopups.scss | |
| parent | lib: spacing use not selector (diff) | |
| download | caelestia-shell-a8f82410065774ae7edb2f65ed379a0fadcce38d.tar.gz caelestia-shell-a8f82410065774ae7edb2f65ed379a0fadcce38d.tar.bz2 caelestia-shell-a8f82410065774ae7edb2f65ed379a0fadcce38d.zip | |
scss: fix deprecation warnings
spacing mixin uses the parent selector so it has to go after all other styles
Diffstat (limited to 'scss/notifpopups.scss')
| -rw-r--r-- | scss/notifpopups.scss | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scss/notifpopups.scss b/scss/notifpopups.scss index aef9efe..325cb7b 100644 --- a/scss/notifpopups.scss +++ b/scss/notifpopups.scss @@ -26,7 +26,6 @@ } .popup { - @include lib.spacing($vertical: true); @include lib.rounded(8, $tr: 0, $br: 0); @include lib.shadow; @include font.main; @@ -36,6 +35,8 @@ color: scheme.$text; padding: lib.s(10) lib.s(12); + @include lib.spacing($vertical: true); + &.low { @include popup(scheme.$overlay0); } @@ -51,8 +52,8 @@ } .header { - @include lib.spacing(5); @include font.mono; + @include lib.spacing(5); } .content { |