ColumnHeader: increase margin-bottom for size lg columns

This commit is contained in:
Alex Gleason 2023-04-05 11:36:43 -05:00
parent 0c15c336ea
commit 96cece3d2e
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -84,7 +84,10 @@ const Column: React.FC<IColumn> = React.forwardRef((props, ref: React.ForwardedR
<ColumnHeader
label={label}
backHref={backHref}
className={clsx({ 'px-4 pt-4 sm:p-0': transparent })}
className={clsx({
'px-4 pt-4 sm:p-0': transparent,
'mb-6': size === 'lg',
})}
action={action}
/>
)}