Skip to content

Commit 294e133

Browse files
committed
feat: Update CICDStepper and CreateCICDPipeline styles and texts
1 parent 0636b48 commit 294e133

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/Pages/App/Configurations/WorkflowEditor/CreateCICDPipeline/CICDStepper.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ export const CICDStepper = ({ config }: CICDStepperProps) => (
66
<div className="ci-cd-pipeline__stepper-container flexbox-col flex-grow-1 dc__align-self-start">
77
{config.map(({ id, icon, title, content }) => (
88
<div key={id} className="ci-cd-pipeline__stepper flex left top dc__gap-8">
9-
<div className="dc__position-rel flex p-7 br-6 border__secondary bg__modal--secondary">
9+
<div className="dc__position-rel flex p-7 br-6 border__secondary bg__modal--primary">
1010
<Icon name={icon} color={null} size={20} />
1111
</div>
12-
<div className="flexbox-col flex-grow-1 br-6 border__secondary">
13-
<div className="px-11 pt-8 pb-7 border__secondary--bottom bg__modal--secondary">
12+
<div className="flexbox-col flex-grow-1 br-6 border__secondary dc__overflow-hidden">
13+
<div className="px-11 pt-8 pb-7 border__secondary--bottom bg__modal--primary">
1414
<p className="m-0 fs-13 lh-20 fw-6 cn-9">{title}</p>
1515
</div>
16-
<div className="flex-grow-1 p-16">{content}</div>
16+
<div className="flex-grow-1 p-16 bg__primary">{content}</div>
1717
</div>
1818
</div>
1919
))}

src/Pages/App/Configurations/WorkflowEditor/CreateCICDPipeline/CreateCICDPipeline.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ export const CreateCICDPipeline = ({
291291
{
292292
id: 'build',
293293
icon: 'ic-build-color',
294-
title: 'Build and deploy from source code',
294+
title: 'Select code source to build image',
295295
content: (
296296
<CIStepperContent
297297
ciCdPipeline={ciCdPipeline}
@@ -338,7 +338,7 @@ export const CreateCICDPipeline = ({
338338
>
339339
<GenericModal.Header title="Build and deploy from source code" />
340340
<GenericModal.Body>
341-
<div className="flex ci-cd-pipeline px-20 py-16 dc__overflow-auto">
341+
<div className="flex ci-cd-pipeline px-20 py-16 bg__secondary dc__overflow-auto">
342342
<APIResponseHandler
343343
isLoading={isCiCdPipelineLoading}
344344
progressingProps={{ pageLoader: true }}

src/Pages/App/Configurations/WorkflowEditor/CreateCICDPipeline/createCICDPipeline.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
content: '';
1818
position: absolute;
1919
width: 1px;
20-
background-color: var(--border-secondary);
20+
background-color: var(--border-secondary-translucent);
2121
}
2222

2323
&::before {

0 commit comments

Comments
 (0)