Skip to content

Commit

Permalink
Merge pull request mermaid-js#287 from Yash-Singh1/patch-1
Browse files Browse the repository at this point in the history
Cursor pointer on card component
  • Loading branch information
sidharthv96 authored Aug 16, 2021
2 parents f50d202 + 660e4c6 commit b7f8b8a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/components/card/card.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
</script>

<div class="bg-white rounded overflow-hidden shadow m-2 flex-grow flex flex-col">
<div class="bg-indigo-400 border-gray-400 p-2 flex-none" on:click={() => (isOpen = !isOpen)}>
<div
class="bg-indigo-400 border-gray-400 p-2 flex-none cursor-pointer"
on:click={() => (isOpen = !isOpen)}>
<div class="flex justify-between">
<Tabs on:select {tabs} bind:isOpen {title} {isCloseable} />
<div class="flex gap-x-4 items-center text-white">
Expand Down

0 comments on commit b7f8b8a

Please sign in to comment.