Use semibold font for media gallery headings

This commit is contained in:
Fedor Indutny
2025-12-11 20:57:56 +01:00
committed by GitHub
parent 4c82a179da
commit 711b27917f

View File

@@ -75,7 +75,9 @@ export function AttachmentSection({
case 'media':
return (
<section className={tw('@container px-5')}>
<h2 className={tw('ps-1 pt-4 pb-2 type-body-medium')}>{header}</h2>
<h2 className={tw('ps-1 pt-4 pb-2 type-body-medium font-semibold')}>
{header}
</h2>
<div
className={tw(
'grid gap-1',
@@ -103,7 +105,9 @@ export function AttachmentSection({
case 'link':
return (
<section>
<h2 className={tw('px-6 pt-1.5 pb-2 type-body-medium')}>{header}</h2>
<h2 className={tw('px-6 pt-1.5 pb-2 type-body-medium font-semibold')}>
{header}
</h2>
<div>
{verified.entries.map(mediaItem => {
return (