From cf84538fbfb75d8f84beb57bac385138d6cdb7ee Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Mon, 19 Sep 2016 17:03:51 -0400 Subject: [PATCH] Bump up smallest size again --- app/assets/javascripts/wizard/components/wizard-canvas.js.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/wizard/components/wizard-canvas.js.es6 b/app/assets/javascripts/wizard/components/wizard-canvas.js.es6 index 0893587ee3a..bd8f9c53cbf 100644 --- a/app/assets/javascripts/wizard/components/wizard-canvas.js.es6 +++ b/app/assets/javascripts/wizard/components/wizard-canvas.js.es6 @@ -18,7 +18,7 @@ class Particle { this.origX = Math.random() * (width + SIZE); this.speed = 1 + Math.random(); this.ang = Math.random() * 2 * Math.PI; - this.scale = (Math.random() * 0.4) + 0.1; + this.scale = (Math.random() * 0.4) + 0.2; this.radius = (Math.random() * 25) + 25; this.color = COLORS[Math.floor(Math.random() * COLORS.length)]; this.flipped = (Math.random() > 0.5) ? 1 : -1;