Skip to content

Commit 6bde02f

Browse files
committed
adjust monospaced font
1 parent 160c5cf commit 6bde02f

File tree

1 file changed

+2
-2
lines changed
  • clients/apps/web/src/app/(main)/(landing)/resources

1 file changed

+2
-2
lines changed

clients/apps/web/src/app/(main)/(landing)/resources/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ export default function Resources() {
5858
{resourceLinks.map((link) => (
5959
<Link
6060
key={link.title}
61-
className="dark:hover:bg-polar-800 dark:border-polar-700 flex w-full cursor-pointer flex-col gap-6 border border-gray-300 p-6 font-mono transition-colors duration-200 hover:bg-gray-100"
61+
className="dark:hover:bg-polar-800 dark:border-polar-700 flex w-full cursor-pointer flex-col gap-6 border border-gray-300 p-6 transition-colors duration-200 hover:bg-gray-100"
6262
href={link.href}
6363
>
6464
<ArrowOutwardOutlined fontSize="inherit" />
6565
<div className="flex flex-col gap-2">
66-
<h3 className="text-xl">{link.title}</h3>
66+
<h3 className="font-mono text-xl">{link.title}</h3>
6767
<p className="dark:text-polar-500 font-sm text-gray-500">
6868
{link.description}
6969
</p>

0 commit comments

Comments
 (0)