Skip to content

Commit

Permalink
error fixes #47
Browse files Browse the repository at this point in the history
Icon button error fixes after CI / build (pull_request) fail
  • Loading branch information
IshiniAvindya committed Dec 26, 2023
1 parent 95842cf commit 1d815c5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/Dark/DarkToggle.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<IconButton
on:click={handleClick}
color="invisible"
variant="invisible"
>
{#if $dark}
<IconMoonStarsFill size={18} />
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/Modal/Modal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

<div class="close-wrap">
<IconButton
color="invisible"
variant="invisible"
on:click={() => show = false}
>
<IconX size={25} />
Expand Down
2 changes: 1 addition & 1 deletion src/lib/marketing/Footer/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<Tooltip text={emailCopied ? "Copied!" : "Copy email"} position="top">
<IconButton
size="small"
color="invisible"
variant="invisible"
on:click={handleCopy}
on:mouseleave={() => emailCopied = false}
>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/marketing/Header/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<span class="mobile-nav-wrap">
<Dropdown align="end" width={300}>
<IconButton
color="invisible"
variant="invisible"
slot="trigger"
>
<IconList size={18} />
Expand Down

0 comments on commit 1d815c5

Please sign in to comment.