Skip to content

Commit 3593da0

Browse files
committed
fix: adjust padding in TriggerDetails component for improved layout
1 parent d089bca commit 3593da0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Shared/Components/CICDHistory/TriggerDetails.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ const ProgressingStatus = memo(({ stage, type, label = 'In progress' }: Progress
146146

147147
return (
148148
<>
149-
<div className="flex dc__gap-8 left">
149+
<div className="flex dc__gap-8 left py-8">
150150
<div className="dc__min-width-fit-content">
151151
<div className="fs-13 fw-6 flex left inprogress-status-color">{label}</div>
152152
</div>
@@ -242,7 +242,7 @@ const CurrentStatus = memo(
242242

243243
if (executionInfo.currentStatus === WorkflowStageStatusType.UNKNOWN) {
244244
return (
245-
<div className="flex dc__gap-8 left pt-12">
245+
<div className="flex dc__gap-8 left py-8">
246246
<span className="cn-9 fs-13 fw-6 lh-20">Unknown status</span>
247247

248248
{type === HistoryComponentType.CI && artifact && (

0 commit comments

Comments
 (0)