Skip to content

Commit ce87b87

Browse files
committed
fix: img parent location url
1 parent 51c5896 commit ce87b87

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/lib/images.svelte

+8-8
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
on:pointerup={() => release(selected_scale.notes[0])}
3737
on:pointerleave={() => release(selected_scale.notes[0])}
3838
>
39-
<img class="h-auto max-w-full" src="/img/01_A.png" alt="Sezione 1" />
39+
<img class="h-auto max-w-full" src="./img/01_A.png" alt="Sezione 1" />
4040
</button>
4141
<div class="flex flex-row">
4242
<button
@@ -47,7 +47,7 @@
4747
on:pointerup={() => release(selected_scale.notes[3])}
4848
on:pointerleave={() => release(selected_scale.notes[3])}
4949
>
50-
<img class="h-full w-auto" src="/img/04_F.png" alt="Sezione 4" />
50+
<img class="h-full w-auto" src="./img/04_F.png" alt="Sezione 4" />
5151
</button>
5252
<button
5353
on:contextmenu={() => {
@@ -57,7 +57,7 @@
5757
on:pointerup={() => release(selected_scale.notes[4])}
5858
on:pointerleave={() => release(selected_scale.notes[4])}
5959
>
60-
<img class="h-full w-auto" src="/img/05_D.png" alt="Sezione 5" />
60+
<img class="h-full w-auto" src="./img/05_D.png" alt="Sezione 5" />
6161
</button>
6262
</div>
6363
</div>
@@ -70,7 +70,7 @@
7070
on:pointerup={() => release(selected_scale.notes[1])}
7171
on:pointerleave={() => release(selected_scale.notes[1])}
7272
>
73-
<img class="h-auto max-w-full" src="/img/02_B.png" alt="Sezione 2" />
73+
<img class="h-auto max-w-full" src="./img/02_B.png" alt="Sezione 2" />
7474
</button>
7575
<button
7676
on:contextmenu={() => {
@@ -80,7 +80,7 @@
8080
on:pointerup={() => release(selected_scale.notes[2])}
8181
on:pointerleave={() => release(selected_scale.notes[2])}
8282
>
83-
<img class="h-auto max-w-full" src="/img/03_G.png" alt="Sezione 3" />
83+
<img class="h-auto max-w-full" src="./img/03_G.png" alt="Sezione 3" />
8484
</button>
8585
<button
8686
on:contextmenu={() => {
@@ -90,7 +90,7 @@
9090
on:pointerup={() => release(selected_scale.notes[5])}
9191
on:pointerleave={() => release(selected_scale.notes[5])}
9292
>
93-
<img class="h-auto max-w-full" src="/img/06_C.png" alt="Sezione 6" />
93+
<img class="h-auto max-w-full" src="./img/06_C.png" alt="Sezione 6" />
9494
</button>
9595
</div>
9696
</div>
@@ -103,7 +103,7 @@
103103
on:pointerup={() => release(selected_scale.notes[6])}
104104
on:pointerleave={() => release(selected_scale.notes[6])}
105105
>
106-
<img class="h-auto max-w-full" src="/img/07_Fsharp.png" alt="Sezione 7" />
106+
<img class="h-auto max-w-full" src="./img/07_Fsharp.png" alt="Sezione 7" />
107107
</button>
108108
<button
109109
on:contextmenu={() => {
@@ -113,7 +113,7 @@
113113
on:pointerup={() => release(selected_scale.notes[0])}
114114
on:pointerleave={() => release(selected_scale.notes[0])}
115115
>
116-
<img class="h-auto max-w-full" src="/img/08_E.png" alt="Sezione 8" />
116+
<img class="h-auto max-w-full" src="./img/08_E.png" alt="Sezione 8" />
117117
</button>
118118
</div>
119119
</section>

0 commit comments

Comments
 (0)