aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/dash/app/pal/static/sass/bootstrap/mixins/_box-shadow.scss
diff options
context:
space:
mode:
Diffstat (limited to 'resources/tools/dash/app/pal/static/sass/bootstrap/mixins/_box-shadow.scss')
-rw-r--r--resources/tools/dash/app/pal/static/sass/bootstrap/mixins/_box-shadow.scss18
1 files changed, 0 insertions, 18 deletions
diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/mixins/_box-shadow.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/mixins/_box-shadow.scss
deleted file mode 100644
index 4172541f3f..0000000000
--- a/resources/tools/dash/app/pal/static/sass/bootstrap/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;
- }
- }
-}