Skip to content

Commit 0e53fdd

Browse files
committed
frontend: fix footer link text style
1 parent 7b5d901 commit 0e53fdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/app/src/app/(main)/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default function Page () {
6565
</div>
6666
<div className="lg:h-[var(--ask-referral-height)] h-1/3 flex lg:justify-center justify-end items-center gap-4 lg:flex-row flex-col pb-4 lg:pb-0" style={{ display: 'auto' }}>
6767
{homepage_footer_links?.map(link => (
68-
<NextLink key={link.text} href={link.href} target="_blank" className={cn('font-light text-sm hover:underline opacity-50 flex justify-center', isHighlightedLinkText('font-semibold text-yellow-500 dark:text-yellow-400 opacity-100 underline'))}>
68+
<NextLink key={link.text} href={link.href} target="_blank" className={cn('font-light text-sm hover:underline opacity-50 flex justify-center', isHighlightedLinkText(link.text) && 'font-semibold text-yellow-500 dark:text-yellow-400 opacity-100 underline')}>
6969
{trimHighlightedLinkText(link.text)}
7070
</NextLink>
7171
))}

0 commit comments

Comments
 (0)