There doesn’t seem to be a clear way to make a button animate and shake when there is an invalid response via my workflow through a True False split?. Would someone be able to walk me through this? I even asked Copilot and its answer was “I don’t know.” which made me laugh
Create a new state for your button. I’ve named mine “error”. Add the following CSS to your button:
animation: .5s ease-in-out wiggle-wiggle;
Create a variable “errorState” that will condition the Error state of your button. On your workflow, change the value of your variable to true to trigger the animation. Reset the variable to false after a delay of 500ms. Et voilà !