:godmode: new moonboard send!

Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
Sindre Kjelsrud 2024-03-02 16:35:44 +01:00
parent 646c7fd16a
commit aac2768621
Signed by untrusted user who does not match committer: sidski
GPG key ID: D2BBDF3EDE6BA9A6
3 changed files with 29 additions and 10 deletions

View file

@ -16,9 +16,14 @@ const mb2016Setups = mb["2016"];
class="bg-yellow-500 rounded-xl"
/>
<p class="font-bold text-xs">{mb.route} ({mb.grade}):</p>
<p class="text-xs">
{mb.tries == 1 ? "Flash" : `${mb.tries} tries`} | {mb.benchmark ? "Benchmarked" : "Not benchmarked"} | {mb.date.string}
</p>
<div class="flex flex-col md:flex-row md:gap-1 text-xs items-center">
<span>
{mb.tries == 1 ? "Flash" : `${mb.tries} tries`} | {mb.benchmark ? "Benchmarked" : "Not benchmarked"}
</span>
<span class="hidden md:inline"> | </span>
<span class="block md:inline">{mb.date.string}</span>
</div>
</div>
))}
</div>