update overal typography

This commit is contained in:
Ren Amamiya
2023-05-20 21:00:09 +07:00
parent 4be64f7730
commit caeffe98a7
54 changed files with 157 additions and 165 deletions

View File

@@ -29,23 +29,23 @@ export default function Navigation() {
<div className="flex flex-col text-zinc-400">
<ActiveLink
href="/app/space"
className="flex h-8 items-center gap-2.5 rounded-md px-2.5 text-[13px] font-semibold hover:text-zinc-200"
className="flex h-8 items-center gap-2.5 rounded-md px-2.5 hover:text-white"
activeClassName="bg-zinc-900/50 hover:bg-zinc-900"
>
<span className="inline-flex h-5 w-5 items-center justify-center rounded bg-zinc-900">
<WorldIcon width={12} height={12} className="text-zinc-200" />
<WorldIcon width={12} height={12} className="text-white" />
</span>
<span>Space</span>
<span className="font-medium">Space</span>
</ActiveLink>
<ActiveLink
href="/app/threads"
className="flex h-8 items-center gap-2.5 rounded-md px-2.5 text-[13px] font-semibold hover:text-zinc-200"
className="flex h-8 items-center gap-2.5 rounded-md px-2.5 hover:text-white"
activeClassName=""
>
<span className="inline-flex h-5 w-5 items-center justify-center rounded bg-zinc-900">
<ThreadsIcon width={12} height={12} className="text-zinc-200" />
<ThreadsIcon width={12} height={12} className="text-white" />
</span>
<span>Threads</span>
<span className="font-medium">Threads</span>
</ActiveLink>
</div>
</div>