Skip to content

Commit e7a0a0e

Browse files
committed
fix: add missing mb-12 spacing to Related Souls and More From sections
The Related Souls and More from Author sections lacked the bottom margin used by every other section on the soul detail page, causing them to stack with no visual separation.
1 parent 79f9705 commit e7a0a0e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/web/components/souls/soul-detail-content.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ export function SoulDetailContent({ data }: SoulDetailContentProps) {
579579

580580
{/* Related souls */}
581581
{relatedSouls.length > 0 && (
582-
<section>
582+
<section className="mb-12">
583583
<SectionHeader variant="label" title="Related Souls" spacing="large" />
584584
<SoulCardGrid>
585585
{relatedSouls.map((s) => (
@@ -591,7 +591,7 @@ export function SoulDetailContent({ data }: SoulDetailContentProps) {
591591

592592
{/* More from this author */}
593593
{authorSouls.length > 0 && owner && (
594-
<section>
594+
<section className="mb-12">
595595
<SectionHeader
596596
variant="label"
597597
title={`More from ${getUserDisplayName(owner)}`}

0 commit comments

Comments
 (0)