Add link to known mirrors
This commit is contained in:
parent
6f86bda97f
commit
5d81440577
1 changed files with 13 additions and 2 deletions
|
@ -15,7 +15,10 @@
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<div class="mirror-url-container">
|
||||||
<h3>Mirror URL</h3>
|
<h3>Mirror URL</h3>
|
||||||
|
<a href="https://git.sofiaritz.com/GFonts/gfonts-interface/issues/2">Known mirrors</a>
|
||||||
|
</div>
|
||||||
<input bind:value={mirror_input} type="url">
|
<input bind:value={mirror_input} type="url">
|
||||||
|
|
||||||
<h3>Google Fonts URL</h3>
|
<h3>Google Fonts URL</h3>
|
||||||
|
@ -23,7 +26,6 @@
|
||||||
|
|
||||||
<button on:click={transform}>Transform</button>
|
<button on:click={transform}>Transform</button>
|
||||||
|
|
||||||
|
|
||||||
{#await output}
|
{#await output}
|
||||||
{:then v}
|
{:then v}
|
||||||
{#if v != null}
|
{#if v != null}
|
||||||
|
@ -32,3 +34,12 @@
|
||||||
{:catch e}
|
{:catch e}
|
||||||
<div>Error :( {e}</div>
|
<div>Error :( {e}</div>
|
||||||
{/await}
|
{/await}
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.mirror-url-container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue