readd wwwroot

This commit is contained in:
ElenitaMLG
2024-04-08 15:00:46 +03:00
parent 897193c865
commit 116405bd75
225 changed files with 88814 additions and 3 deletions
@@ -0,0 +1,18 @@
@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;
}
}
}