aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/static/scss/mixins/_box-shadow.scss
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-10-15 21:01:31 +0100
committerMatthew Lemon <y@yulqen.org>2024-10-15 21:01:31 +0100
commiteeaddb27560d723ca7d61359744ceb2709fccd2d (patch)
tree04ddbc49ae7b73d5f5a9e1716d7227aecd3b9f85 /pyblackbird_cc/static/scss/mixins/_box-shadow.scss
parent7a3044c859043837e6c7c95bb4894d04e9b2cbc2 (diff)
Renamed from pyblackbird_cc to alphabetlearning - everywhere
Diffstat (limited to 'pyblackbird_cc/static/scss/mixins/_box-shadow.scss')
-rw-r--r--pyblackbird_cc/static/scss/mixins/_box-shadow.scss18
1 files changed, 0 insertions, 18 deletions
diff --git a/pyblackbird_cc/static/scss/mixins/_box-shadow.scss b/pyblackbird_cc/static/scss/mixins/_box-shadow.scss
deleted file mode 100644
index 4172541..0000000
--- a/pyblackbird_cc/static/scss/mixins/_box-shadow.scss
+++ /dev/null
@@ -1,18 +0,0 @@
-@mixin box-shadow($shadow...) {
- @if $enable-shadows {
- $result: ();
-
- @each $value in $shadow {
- @if $value != null {
- $result: append($result, $value, "comma");
- }
- @if $value == none and length($shadow) > 1 {
- @warn "The keyword 'none' must be used as a single argument.";
- }
- }
-
- @if (length($result) > 0) {
- box-shadow: $result;
- }
- }
-}