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:
@@ -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
|
||||
? (
|
||||
|
||||
Reference in New Issue
Block a user