koro

an event time scheduler
git clone https://tilde.team/~marisa/repo/koro.git
Log | Files | Refs | README | LICENSE

commit 967858aa5b22db4128231304c346624a9ae5dbc7
parent d179fc0c260944fd7ef35706423099ace88c0703
Author: mokou <mokou@posteo.de>
Date:   Thu, 21 May 2020 22:56:26 +0200

feat: Add more credits to the footer

Diffstat:
Msrc/App.svelte | 10++++++----
1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/App.svelte b/src/App.svelte @@ -28,16 +28,18 @@ <hr class="border-gray-300 mt-5 mb-2 max-w-xl"/> <div class="text-center text-sm text-gray-800 max-w-xl"> - koro v.{process.version} &bull; + koro v.{process.version} by + <a class="text-purple-600" href="https://marisa.touhou.cz">Marisa</a> + (<a class="text-purple-600" href="https://git.touhou.cz/mokou/koro">source</a>) + <br/> <span class="text-purple-600 hover:cursor-pointer" on:click={is24Hrs.set(!$is24Hrs)}> {#if $is24Hrs} toggle AM/PM {:else} toggle 24-hours {/if} - &bull; - <a href="/updates">update log</a> - <br/> </span> + &bull; + <a class="text-purple-600" href="/updates">update log</a> </div> </main>