This commit is contained in:
minhtrannhat 2025-02-09 17:23:16 -05:00
parent 605f76f133
commit 0d30048b10
Signed by: minhtrannhat
GPG Key ID: E13CFA85C53F8062
3 changed files with 3 additions and 2 deletions

View File

@ -42,7 +42,7 @@ const Pre: ParentComponent<{ lang: string; lines?: string; file?: string }> = (
return (
<div class="my-1v">
<div class="bg-nord2 text-nord12 flex justify-between px-1h text-sm leading-1">
<div class="bg-nord2 text-nord12 text-xl flex justify-between px-1h leading-2">
<Show when={props.file} fallback={<span aria-hidden />}>
<span>{props.file}</span>
</Show>

View File

@ -27,7 +27,7 @@ const Homepage = () => {
theory.
</p>
<p>
Say hi:{" "}
Email me at:{" "}
<a
class="underline hover:text-nord-11"
target="_blank"

View File

@ -2,6 +2,7 @@ import { For, Show } from "solid-js";
import type { RouteSectionProps } from "@solidjs/router";
import { Meta, Title } from "@solidjs/meta";
import { posts } from "~/data/posts";
//@ts-expect-error
import { MDXProvider } from "solid-mdx";
import { markdownComponents, PostImage } from "~/components/Markdown";
import dayjs from "dayjs";