Skip to content

Commit 6c8d4e3

Browse files
fix: font not applied everywhere
1 parent a2b0b22 commit 6c8d4e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
/>
6565
</head>
6666
<body
67-
class="bg-white text-black scrollbar-thin scrollbar-track-slate-300 scrollbar-thumb-slate-400 dark:bg-slate-900 dark:text-white dark:scrollbar-track-slate-800 dark:scrollbar-thumb-slate-600"
67+
class="bg-white text-black scrollbar-thin scrollbar-track-slate-300 scrollbar-thumb-slate-400 dark:bg-slate-900 dark:text-white dark:scrollbar-track-slate-800 dark:scrollbar-thumb-slate-600 font-open-sans"
6868
>
6969
<div id="root"></div>
7070
<script type="module" src="./src/index.tsx"></script>

src/components/Layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default function Layout({ children }: { children: React.ReactNode }) {
55
// const { isDev } = useRouterContext().context
66

77
return (
8-
<div className="flex min-h-screen flex-col items-center justify-start font-open-sans text-black dark:text-white">
8+
<div className="flex min-h-screen flex-col items-center justify-start">
99
<Header />
1010
{children}
1111
{/* {isDev && <TanStackRouterDevtools />} */}

0 commit comments

Comments
 (0)