Skip to content

Commit

Permalink
fix: add black underline to read more text
Browse files Browse the repository at this point in the history
  • Loading branch information
Aerilym committed Oct 7, 2024
1 parent a5d0336 commit 05feced
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/foundation/app/(Site)/blog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const dynamic = 'force-static';
async function ReadMoreText() {
const blogDictionary = await getTranslations('blog');
return (
<span className="group-hover:border-b-session-green group-hover:text-session-text-black hover:border-b-session-green mt-1 w-max border-b-2 border-b-transparent text-sm">
<span className="group-hover:border-b-session-green group-hover:text-session-text-black hover:border-b-session-green border-b-session-black mt-1 w-max border-b text-sm group-hover:border-b-2">
{blogDictionary('readMore')}
</span>
);
Expand Down

0 comments on commit 05feced

Please sign in to comment.