[WEB-5142] fix: Issue modal styling #7961
This commit is contained in:
parent
196baf099a
commit
44a483f895
1 changed files with 5 additions and 2 deletions
|
|
@ -489,7 +489,7 @@ export const IssueFormRoot: FC<IssueFormProps> = observer((props) => {
|
||||||
activeAdditionalPropertiesLength > 0 && "shadow-custom-shadow-xs"
|
activeAdditionalPropertiesLength > 0 && "shadow-custom-shadow-xs"
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<div>
|
<div className="pb-3">
|
||||||
<IssueDefaultProperties
|
<IssueDefaultProperties
|
||||||
control={control}
|
control={control}
|
||||||
id={data?.id}
|
id={data?.id}
|
||||||
|
|
@ -505,7 +505,10 @@ export const IssueFormRoot: FC<IssueFormProps> = observer((props) => {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
{showActionButtons && (
|
{showActionButtons && (
|
||||||
<div className="flex items-center justify-end gap-4 py-3" tabIndex={getIndex("create_more")}>
|
<div
|
||||||
|
className="flex items-center justify-end gap-4 pb-3 pt-6 border-t-[0.5px] border-custom-border-200"
|
||||||
|
tabIndex={getIndex("create_more")}
|
||||||
|
>
|
||||||
{!data?.id && (
|
{!data?.id && (
|
||||||
<div
|
<div
|
||||||
className="inline-flex items-center gap-1.5 cursor-pointer"
|
className="inline-flex items-center gap-1.5 cursor-pointer"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue