How to style a Druid Button for custom animations. Current defaults are good, but I subtly just want to customize:
- When I hover, it scales bigger
translate: scale(1.5)
in css (or hover:scale-105 in tailwind) - When I hold click/active, it scales smaller
translate: scale(0.85)
in css (or active:scale-85 in tailwind)
Is making a new component just the way? Thanks in advance!