0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Updated spacing for form headings

refs https://github.com/TryGhost/Product/issues/3580
This commit is contained in:
Djordje Vlaisavljevic 2023-07-13 13:21:12 +01:00
parent 0a79fc8ce7
commit b6a990f830

View file

@ -56,7 +56,7 @@ const Form: React.FC<FormProps> = ({
return (
<div className={!title ? classes : ''}>
{title && <Heading className={`${grouped && 'pb-1'}`} level={6} separator={!grouped} grey>{title}</Heading>}
{title && <Heading className={`${grouped && 'pb-2'}`} level={6} separator={!grouped} grey>{title}</Heading>}
<div className={title ? classes : ''}>
{children}
</div>