Skip to content

Commit

Permalink
style(articles): title font size adjustement
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier Nouaille committed Sep 18, 2024
1 parent 000d25b commit 38d90de
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ const Home = () => {
key={article.title}
href={article.url}
>
<h3 className='text-2xl font-medium'>{article.title}</h3>
<h3 className='text-xl md:text-2xl font-medium'>
{article.title}
</h3>
<p className='font-mono text-thin text-sm text-slate-500'>
{article.date}
</p>
Expand Down

0 comments on commit 38d90de

Please sign in to comment.