Replace x with times symbol

This commit is contained in:
2022-02-04 15:30:56 +01:00
parent 620ec76f3c
commit 13551c0403
2 changed files with 2 additions and 2 deletions

View File

@@ -78,7 +78,7 @@
/>
</div>
<div style="grid-area: result-size">
{result[0].length}x{result.length}
{result[0].length} &times; {result.length}
</div>
<div style="grid-area: matrix"><Matrix bind:matrix /></div>
<div style="grid-area: kernel"><Matrix bind:matrix={kernel} /></div>

View File

@@ -5,7 +5,7 @@
<div>
<input type="number" min="1" bind:value={matrixWidth} onclick="select()" />
<span>x</span>
<span>&times;</span>
<input type="number" min="1" bind:value={matrixHeight} onclick="select()" />
</div>