Update padding in show-more component for better spacing

This commit is contained in:
MartinBraquet
2026-02-24 00:36:21 +01:00
parent ab0fd0aea4
commit 1e2c2bbb8f

View File

@@ -28,7 +28,7 @@ export function ShowMore(props: ShowMoreProps) {
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
</svg>
</button>
{showMoreInfo && <div className="mt-2 p-3 rounded-md">{children}</div>}
{showMoreInfo && <div className="mt-2 px-3 rounded-md">{children}</div>}
</div>
)
}