From eeaddb27560d723ca7d61359744ceb2709fccd2d Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Tue, 15 Oct 2024 21:01:31 +0100 Subject: Renamed from pyblackbird_cc to alphabetlearning - everywhere --- pyblackbird_cc/static/scss/mixins/_box-shadow.scss | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 pyblackbird_cc/static/scss/mixins/_box-shadow.scss (limited to 'pyblackbird_cc/static/scss/mixins/_box-shadow.scss') 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; - } - } -} -- cgit v1.2.3