Add link to known mirrors

This commit is contained in:
Sofía Aritz 2023-08-01 19:02:33 +02:00
parent 6f86bda97f
commit 5d81440577

View file

@ -15,7 +15,10 @@
} }
</script> </script>
<h3>Mirror URL</h3> <div class="mirror-url-container">
<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>