Footer styles

This commit is contained in:
Kuba Orlik 2026-05-26 16:50:37 +02:00
parent 9c4fb07f91
commit 8852e7b5bd
2 changed files with 8 additions and 2 deletions

View File

@ -16,18 +16,23 @@ footer {
margin: 0;
padding: 0;
display: flex;
gap: 16px;
flex-flow: row wrap;
column-gap: 16px;
justify-content: center;
align-items: center;
li {
list-style: none;
display: inline-flex;
flex-basis: 100px;
justify-content: center;
a {
text-decoration: none;
color: var(--color-brand-text-on-accent2);
font-weight: bold;
padding: 16px 8px;
white-space: nowrap;
&:hover {
text-decoration: underline;

View File

@ -1,3 +1,4 @@
import { insert_nbsp } from "@sealcode/jdd";
import type { Context } from "koa";
import { TempstreamJSX } from "tempstream";
@ -18,7 +19,7 @@ export default async function footer(ctx: Context) {
</li>
{linkData.map((link) => (
<li>
<a href={link.url}>{link.text}</a>
<a href={link.url}>{insert_nbsp(link.text || "")}</a>
</li>
))}
</ul>