Use flexbox
All checks were successful
Deploy website / deploy (push) Successful in 17s

This commit is contained in:
lumi 2025-08-11 13:45:22 +10:00
parent 0457c77008
commit 856c7d2fb4
Signed by: luaneko
GPG Key ID: 406809B8763FF07A

View File

@ -33,10 +33,10 @@ const links = {
<p>el gato 🤯 🤯</p> <p>el gato 🤯 🤯</p>
</main> </main>
<footer class="text-sm my-2"> <footer class="flex flex-row space-x-1 my-2 text-sm">
{ {
Object.entries(links).map(([name, { alt, href }], i) => [ Object.entries(links).map(([name, { alt, href }], i) => [
i ? " · " : "", i ? <span>·</span> : null,
<a href={href} title={alt} set:text={name} />, <a href={href} title={alt} set:text={name} />,
]) ])
} }