From b92efb9fc6714de6368f8398c07f1bf7e41dec9e Mon Sep 17 00:00:00 2001 From: Warrick Corfe-Tan Date: Mon, 21 Jun 2021 13:50:47 +1000 Subject: [PATCH] minor animation tweak --- ts/components/session/icon/SessionIcon.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ts/components/session/icon/SessionIcon.tsx b/ts/components/session/icon/SessionIcon.tsx index 0abe25f84..e698b71d5 100644 --- a/ts/components/session/icon/SessionIcon.tsx +++ b/ts/components/session/icon/SessionIcon.tsx @@ -63,8 +63,9 @@ const rotate = keyframes` */ const glow = (color: string, glowDuration: number, glowStartDelay: number) => { const dropShadowType = `drop-shadow(0px 0px 4px ${color}) `; + //increase shadow intensity by 3 - const dropShadow = `${dropShadowType.repeat(2)};`; + const dropShadow = `${dropShadowType.repeat(1)};`; // creating keyframe for sequential animations let kf = '';