Skip to content

Commit

Permalink
add more margin to pres title
Browse files Browse the repository at this point in the history
  • Loading branch information
Tschonti committed Feb 19, 2024
1 parent 8343341 commit dbe14de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/presentations/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ export default async function Presentations() {
<div
className={clsx(
'p-6 h-full flex items-center justify-center',
presentation.presenter.name.split(',').length > 1 && 'mt-6'
presentation.presenter.name.split(',').length > 1 ? 'mt-6' : 'mt-2'
)}
>
<h2 className='text-center text-[24px] font-bold text-white pb-4'>{presentation.title}</h2>
<h2 className='text-center text-[24px] font-bold text-white'>{presentation.title}</h2>
</div>
</Link>
</div>
Expand Down

0 comments on commit dbe14de

Please sign in to comment.