Skip to content

Commit 417c20a

Browse files
committed
fix: remove selection ability on some svgs
1 parent 01fca52 commit 417c20a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/lib/components/MainBird.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
})
6262
</script>
6363

64-
<div bind:this={mainBird} class="main-bird mt-50">
64+
<div bind:this={mainBird} class="main-bird mt-50 select-none">
6565
<img
6666
bind:this={birdImg}
6767
src="/images/birb-bg-no-bg.svg"

src/lib/components/ThemeToggle.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@
6262
</script>
6363

6464
<button bind:this={sunButton} onclick={toggleTheme}>
65-
<img src="/icons/sun.svg" alt="Sun" class="hover-expand w-16" />
65+
<img src="/icons/sun.svg" alt="Sun" class="hover-expand w-16 select-none" />
6666
</button>
6767
<button bind:this={moonButton} onclick={toggleTheme}>
68-
<img src="/icons/moon.svg" alt="Moon" class="hover-expand w-16" />
68+
<img src="/icons/moon.svg" alt="Moon" class="hover-expand w-16 select-none" />
6969
</button>
7070

7171
<style>

0 commit comments

Comments
 (0)