clear code
This commit is contained in:
parent
14dc82ebb9
commit
b664c3a4a2
|
@ -11,10 +11,10 @@ const Icon = ({ src, width = '16px', height = '16px' }: IconProps) => {
|
|||
<Image
|
||||
src={src}
|
||||
source={{ uri: src }}
|
||||
width={'70%'}
|
||||
height={100}
|
||||
width={'50%'}
|
||||
height={90}
|
||||
style={{ backgroundColor: 'transparent' }}
|
||||
minWidth={'110px'}
|
||||
minWidth={'90px'}
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
|
|
@ -60,7 +60,7 @@ const FormStepper = ({ activeStep, windowWidth }: FormStepperProps) => {
|
|||
return (
|
||||
<Step
|
||||
key={originalIndex}
|
||||
label={`${originalIndex + 1}. ${step.label}`}
|
||||
label={`${step.label}`}
|
||||
className="custom-step"
|
||||
onClick={() => changeStepOnClickHandler(originalIndex)}
|
||||
completed={activeStep > originalIndex - 1}
|
||||
|
|
|
@ -28,8 +28,8 @@ const ExecClientCard = ({ name, icon, isComingSoon }: ExecClientCardProps) => {
|
|||
: '1px solid #DCE0E5',
|
||||
borderRadius: '16px',
|
||||
padding: '12px 16px',
|
||||
width: '19%',
|
||||
cursor: 'pointer',
|
||||
width: '100%',
|
||||
minWidth: '150px',
|
||||
}}
|
||||
space={'$8'}
|
||||
|
@ -50,7 +50,7 @@ const ExecClientCard = ({ name, icon, isComingSoon }: ExecClientCardProps) => {
|
|||
alignItems: 'center',
|
||||
padding: '3px 6px',
|
||||
borderRadius: '67px',
|
||||
width: 'fit-content',
|
||||
|
||||
}}
|
||||
>
|
||||
<Text size={11} color="#fff">
|
||||
|
|
|
@ -13,9 +13,8 @@ const ExecClientCards = () => {
|
|||
<Stack
|
||||
style={{
|
||||
display: 'grid',
|
||||
gridTemplateColumns: 'repeat(auto-fill, minmax(200px, 1fr))',
|
||||
gridTemplateColumns: 'repeat(auto-fit, minmax(200px, 1fr))',
|
||||
gap: '8px',
|
||||
justifyContent: 'space-between',
|
||||
}}
|
||||
>
|
||||
{Object.entries(DOCUMENTATIONS).map(([name, { icon }], index) => (
|
||||
|
|
Loading…
Reference in New Issue