Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 478f862

Browse files
committed
fix light mode guides page
1 parent cf4bef4 commit 478f862

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

next-env.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
/// <reference types="next/navigation-types/compat/navigation" />
43

54
// NOTE: This file should not be edited
65
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.

src/components/guides/GuideItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const guide: React.FC<Props> = ({ guide, featured }) => {
2929
</p>
3030
<p
3131
className={cn(
32-
'text-md mt-3 text-base text-foreground-light',
32+
'text-md mt-3 text-base text-foreground dark:text-foreground-light',
3333
featured ? 'lg:text-md' : '',
3434
)}
3535
>

src/components/guides/GuidePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const GuidePage: React.FC<Props> = ({ guides, allTags }) => {
2929
<Suspense>
3030
<GuideList
3131
guides={guides}
32-
className="relative mx-2 my-4 w-full lg:mx-8 lg:my-10"
32+
className="relative mx-2 my-4 w-full sm:px-8 lg:my-10"
3333
/>
3434
</Suspense>
3535
</div>

0 commit comments

Comments
 (0)