Skip to content

Commit c63ea6f

Browse files
Merge pull request #574 from devtron-labs/fix/release-29-css-issues
fix: logs renderer line number to accomodate till 99999 in single line and add padding for build in progress.
2 parents d089bca + 21fa72e commit c63ea6f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Shared/Components/CICDHistory/LogsRenderer.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
}
6565

6666
&__log-item {
67-
grid-template-columns: 34px auto;
67+
grid-template-columns: 36px auto;
6868
&:hover {
6969
background-color: var(--white-20);
7070
}

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)