diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-02-22 17:25:48 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-02-22 17:25:48 +1100 |
| commit | a6a6ef8a94d9167fcd487dcf229aeae87c84d58f (patch) | |
| tree | 96b203b0501cd0dad4fdbbf201fe04c12b4cee0f /scss | |
| parent | bar: fix vertical height (diff) | |
| download | caelestia-shell-a6a6ef8a94d9167fcd487dcf229aeae87c84d58f.tar.gz caelestia-shell-a6a6ef8a94d9167fcd487dcf229aeae87c84d58f.tar.bz2 caelestia-shell-a6a6ef8a94d9167fcd487dcf229aeae87c84d58f.zip | |
scss: make notifpopup shadow default
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/_lib.scss | 2 | ||||
| -rw-r--r-- | scss/notifpopups.scss | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scss/_lib.scss b/scss/_lib.scss index c09a1e9..ff418c3 100644 --- a/scss/_lib.scss +++ b/scss/_lib.scss @@ -16,7 +16,7 @@ $scale: 0.068rem; border: s($width) $style color.change($colour, $alpha: $alpha); } -@mixin shadow($colour: black, $alpha: 0.4, $x: 2, $y: 3, $blur: 8, $spread: 0) { +@mixin shadow($colour: black, $alpha: 0.64, $x: 0, $y: 0, $blur: 3, $spread: 0) { box-shadow: s($x) s($y) s($blur) s($spread) color.change($colour, $alpha: $alpha); } diff --git a/scss/notifpopups.scss b/scss/notifpopups.scss index 04e0b2b..125a9f4 100644 --- a/scss/notifpopups.scss +++ b/scss/notifpopups.scss @@ -26,7 +26,7 @@ .inner { @include lib.rounded(8); - @include lib.shadow(black, 0.64, 0, 0, 3); + @include lib.shadow; &.low { @include popup(scheme.$overlay0, 0.3); |