From 98c3d92c7efe8d5a0bb4cff6e4c75c79c744c8d1 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Thu, 17 Oct 2024 23:46:54 +0200 Subject: [PATCH] feat: bigger sparkles --- components/StarshineGlitter.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/StarshineGlitter.vue b/components/StarshineGlitter.vue index 4d8166f..6a58753 100644 --- a/components/StarshineGlitter.vue +++ b/components/StarshineGlitter.vue @@ -4,8 +4,8 @@ const STARS = 250; const MIN_SPARKLE = 2; const MAX_SPARKLE = 15; -const MIN_SIZE = 15; -const MAX_SIZE = 30; +const MIN_SIZE = 25; +const MAX_SIZE = 35; const random = (min: number, max: number) => Math.random() * (max - min) + min;