Skip to content

Commit

Permalink
attempt to fix svg paths
Browse files Browse the repository at this point in the history
  • Loading branch information
harvanchik committed May 11, 2024
1 parent f93c778 commit f79a3ed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
target="_blank"
class="my-auto mb-1.5 ml-4 opacity-85 transition-transform duration-150 hover:scale-110 hover:opacity-100"
>
<img class="h-5" src="../../src/lib/svg/youtube.svg" alt="youtube" />
<img class="h-5" src="./../../src/lib/svg/youtube.svg" alt="youtube" />
</a>
{/if}
<!-- END: YouTube Link -->
Expand Down
2 changes: 1 addition & 1 deletion src/routes/c/[casePlayId]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
target="_blank"
class="my-auto mb-3 ml-5 h-8 opacity-85 transition-transform duration-150 hover:scale-110 hover:opacity-100"
>
<img class="h-full" src="../../../../src/lib/svg/youtube.svg" alt="youtube" />
<img class="h-full" src="./../../../src/lib/svg/youtube.svg" alt="youtube" />
</a>
{/if}
<!-- END: YouTube Link -->
Expand Down
2 changes: 1 addition & 1 deletion svelte.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';

/** @type {import('@sveltejs/kit').Config} */
const config = {
Expand Down

0 comments on commit f79a3ed

Please sign in to comment.