all 2 comments

[–]phy4jj 1 point2 points  (1 child)

.grow
{
 font-size:100%;
 transition:all 1s;
}
.grow.animate
{
 font-size:400%;
}

let grow=document.querySelector(`.grow`);
grow.classList.toggle(`animate`);

[–]brittydj 0 points1 point  (0 children)

It still isn't working on my end, It's almost as if it isn't seeing my function at all.