diff options
Diffstat (limited to 'scss/notifpopups.scss')
| -rw-r--r-- | scss/notifpopups.scss | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/scss/notifpopups.scss b/scss/notifpopups.scss index 89e5eea..92d2760 100644 --- a/scss/notifpopups.scss +++ b/scss/notifpopups.scss @@ -16,7 +16,7 @@ .notifpopups { min-width: lib.s(425); padding-left: lib.s(10); // So notifications can overshoot for init animation - padding-right: lib.s(10); + padding-right: lib.s(5); padding-top: lib.s(5); .notification { @@ -25,9 +25,11 @@ } .inner { - @include lib.rounded(8); + @include lib.rounded(10); @include lib.shadow; + background-color: scheme.$base; + &.low { @include popup(scheme.$overlay0); } @@ -39,6 +41,10 @@ &.critical { @include lib.border(scheme.$error, 0.5); @include popup(scheme.$error); + + @if not scheme.$borders { + background-color: color.mix(scheme.$base, scheme.$error, 95%); + } } } } |