🎨 [bootsier] Ajusta estilos para personalizar

This commit is contained in:
Manuel Cillero 2025-10-12 20:37:38 +02:00
parent 674d92033c
commit ed22d3d591
109 changed files with 171 additions and 7 deletions

View file

@ -1,24 +0,0 @@
@mixin box-shadow($shadow...) {
@if $enable-shadows {
$result: ();
$has-single-value: false;
$single-value: null;
@each $value in $shadow {
@if $value != null {
@if $value == none or $value == initial or $value == inherit or $value == unset {
$has-single-value: true;
$single-value: $value;
} @else {
$result: append($result, $value, "comma");
}
}
}
@if $has-single-value {
box-shadow: $single-value;
} @else if (length($result) > 0) {
box-shadow: $result;
}
}
}