style(animated-button): add cursor-pointer to button class
This commit is contained in:
parent
5e84afba90
commit
7106ebd0ef
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ export class AnimatedButtonComponent {
|
||||||
|
|
||||||
get buttonClass(): string {
|
get buttonClass(): string {
|
||||||
const baseClass =
|
const baseClass =
|
||||||
'relative group font-bold rounded-full transition-all duration-300 ease-out transform-gpu hover:scale-105 will-change-transform';
|
'cursor-pointer relative group font-bold rounded-full transition-all duration-300 ease-out transform-gpu hover:scale-105 will-change-transform';
|
||||||
const variantClass =
|
const variantClass =
|
||||||
this.variant === 'primary'
|
this.variant === 'primary'
|
||||||
? 'bg-gradient-to-r from-emerald-500 to-emerald-400 text-black hover:shadow-xl hover:shadow-emerald-500/20'
|
? 'bg-gradient-to-r from-emerald-500 to-emerald-400 text-black hover:shadow-xl hover:shadow-emerald-500/20'
|
||||||
|
|
Reference in a new issue