Skip to content

Commit

Permalink
#1 feat(card) : add card link pop effect
Browse files Browse the repository at this point in the history
  • Loading branch information
farshadGholamali committed Jun 29, 2022
1 parent d49382f commit 24ef639
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib/components/card/Card.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
export let subtitle: string = ''
export let toHref: string = ''
export let linkRotate: boolean = false
export let linkPop: boolean = false
let divCard: HTMLDivElement
Expand All @@ -30,6 +31,7 @@
$: classes = clsx('card', {
'card-borderless': borderless,
'card-link-rotate': linkRotate,
'card-link-pop': linkPop,
})
</script>

Expand Down

0 comments on commit 24ef639

Please sign in to comment.