Updated packages

This commit is contained in:
Alexis
2024-12-24 13:12:41 +01:00
parent 73a02da0e8
commit 4f3f37f452
4 changed files with 136 additions and 207 deletions

View File

@@ -1,3 +1,5 @@
@use 'sass:list';
/// Stroke font-character
/// @param {Integer} $stroke - Stroke width
/// @param {Color} $color - Stroke color
@@ -8,7 +10,7 @@
@for $i from $from through $stroke {
@for $j from $from through $stroke {
$shadow: append($shadow, $i*1px $j*1px 0 $color, comma);
$shadow: list.append($shadow, $i*1px $j*1px 0 $color, comma);
}
}

View File

@@ -45,5 +45,5 @@ const { title } = Astro.props;
</html>
<style lang="scss" is:global>
@import '../assets/scss/theme.scss';
@use '../assets/scss/theme.scss';
</style>