We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01fca52 commit 417c20aCopy full SHA for 417c20a
2 files changed
src/lib/components/MainBird.svelte
@@ -61,7 +61,7 @@
61
})
62
</script>
63
64
-<div bind:this={mainBird} class="main-bird mt-50">
+<div bind:this={mainBird} class="main-bird mt-50 select-none">
65
<img
66
bind:this={birdImg}
67
src="/images/birb-bg-no-bg.svg"
src/lib/components/ThemeToggle.svelte
@@ -62,10 +62,10 @@
<button bind:this={sunButton} onclick={toggleTheme}>
- <img src="/icons/sun.svg" alt="Sun" class="hover-expand w-16" />
+ <img src="/icons/sun.svg" alt="Sun" class="hover-expand w-16 select-none" />
</button>
<button bind:this={moonButton} onclick={toggleTheme}>
68
- <img src="/icons/moon.svg" alt="Moon" class="hover-expand w-16" />
+ <img src="/icons/moon.svg" alt="Moon" class="hover-expand w-16 select-none" />
69
70
71
<style>
0 commit comments