ColumnHeader: increase margin-bottom for size lg columns
This commit is contained in:
parent
0c15c336ea
commit
96cece3d2e
1 changed files with 4 additions and 1 deletions
|
@ -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}
|
||||
/>
|
||||
)}
|
||||
|
|
Loading…
Reference in a new issue