Skip to content

Commit 0162546

Browse files
committed
fixes
1 parent 812e9a5 commit 0162546

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

src/components/Ui/Infobox/Infobox.module.css

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,21 @@
55
padding: 1rem;
66
margin: 1rem 0;
77
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
8-
transform: translateY(-2px);
9-
color: #fff;
108
}
119

1210
.icon {
13-
margin-right: 1rem;
1411
font-size: 4.5rem;
1512
flex-shrink: 0;
13+
width: 2rem;
14+
height: 2rem;
15+
color: #fff;
16+
margin: 0 1rem;
17+
margin-right: 2rem;
1618
}
1719

1820
.content {
1921
flex-grow: 1;
22+
padding-right: 3rem;
2023
}
2124

2225
.full-width {
@@ -58,3 +61,17 @@
5861
.content > *:not(:last-child) {
5962
margin-bottom: 1rem;
6063
}
64+
65+
.content > * {
66+
color: #fff;
67+
line-height: 1.2rem;
68+
}
69+
70+
.dark-mode {
71+
.content > * {
72+
color: #000;
73+
}
74+
.icon {
75+
color: #000;
76+
}
77+
}

src/components/Wizards/CreateManagedControlPlane/CreateManagedControlPlaneWizardContainer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ export const CreateManagedControlPlaneWizardContainer: FC<CreateManagedControlPl
542542
data-step="metadata"
543543
>
544544
<FlexBox direction={'Row'} justifyContent={'SpaceBetween'} gap={16}>
545-
<div style={{ border: '1px solid red', width: '50%' }}>
545+
<div style={{ width: '50%' }}>
546546
<MetadataForm
547547
key={metadataFormKey}
548548
watch={watch}
@@ -558,7 +558,7 @@ export const CreateManagedControlPlaneWizardContainer: FC<CreateManagedControlPl
558558
/>
559559
</div>
560560
{isDuplicateMode && (
561-
<div style={{ border: '1px solid red', width: '50%' }}>
561+
<div style={{ width: '50%', paddingRight: '1rem', paddingTop: '1rem' }}>
562562
<Infobox size={'sm'} variant={'warning'}>
563563
<Text>
564564
<Trans

0 commit comments

Comments
 (0)