Reverted text-xs override. text-ss replaces the text-xs override while tailwind's existing text-xs replaces our text-2xs.

This commit is contained in:
2026-07-17 12:19:20 -04:00
parent dda0e738d4
commit 4f0418ea6e
43 changed files with 159 additions and 159 deletions

View File

@@ -21,7 +21,7 @@ interface CodeBoxProps {
export function CodeBox(props: CodeBoxProps): JSXElement {
return (
<div class={"text-xs p-3 bg-neutral-800 text-neutral-100 border border-neutral-700 rounded-default " + (props.class || "")}>
<div class={"text-ss p-3 bg-neutral-800 text-neutral-100 border border-neutral-700 rounded-default " + (props.class || "")}>
<pre><code>{props.code}</code></pre>
</div>
);
@@ -79,7 +79,7 @@ interface BreadcrumbsProps {
export function Breadcrumbs(props: BreadcrumbsProps): JSXElement {
return (
<div class="flex flex-row items-center text-ink-faint text-xs">
<div class="flex flex-row items-center text-ink-faint text-ss">
<For each={props.items}>{(crumb, index) => (
index() !== props.items.length - 1
? (