mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-28 02:50:45 +00:00
Style stepper
This commit is contained in:
parent
3ed5965795
commit
1bb2dd84d9
@ -1,4 +1,4 @@
|
||||
import { Text } from '@status-im/components'
|
||||
import './StepperStyles.css'
|
||||
import React, { useState } from 'react'
|
||||
import { Stepper, Step } from 'react-form-stepper'
|
||||
|
||||
@ -6,7 +6,7 @@ const FormStepper: React.FC = () => {
|
||||
const [activeStep, setActiveStep] = useState<number>(0)
|
||||
|
||||
return (
|
||||
<div style={{ width: '100%', display: 'flex', justifyContent: 'center' }}>
|
||||
<div style={{ width: '100%', justifyContent: 'center' }}>
|
||||
<Stepper
|
||||
activeStep={activeStep}
|
||||
nonLinear={true}
|
||||
@ -14,36 +14,69 @@ const FormStepper: React.FC = () => {
|
||||
connectorStyleConfig={customConnectorStyle}
|
||||
style={{ fontSize: '14px' }}
|
||||
>
|
||||
<Step label={'Overview'} onClick={() => setActiveStep(0)} completed={activeStep >= 0} />
|
||||
<Step label="ADVISORIES" onClick={() => setActiveStep(1)} completed={activeStep > 0} />
|
||||
<Step label="ADVISORIES" onClick={() => setActiveStep(2)} completed={activeStep > 1} />
|
||||
<Step label="ADVISORIES" onClick={() => setActiveStep(3)} completed={activeStep > 2} />
|
||||
<Step label="ADVISORIES" onClick={() => setActiveStep(4)} completed={activeStep > 3} />
|
||||
<Step
|
||||
className="custom-step"
|
||||
label={'Overview'}
|
||||
onClick={() => setActiveStep(0)}
|
||||
completed={activeStep >= 0}
|
||||
/>
|
||||
<Step
|
||||
className="custom-step"
|
||||
label="ADVISORIES"
|
||||
onClick={() => setActiveStep(1)}
|
||||
completed={activeStep > 0}
|
||||
/>
|
||||
<Step
|
||||
label="ADVISORIES"
|
||||
className="custom-step"
|
||||
onClick={() => setActiveStep(2)}
|
||||
completed={activeStep > 1}
|
||||
/>
|
||||
<Step
|
||||
label="ADVISORIES"
|
||||
className="custom-step"
|
||||
onClick={() => setActiveStep(3)}
|
||||
completed={activeStep > 2}
|
||||
/>
|
||||
<Step
|
||||
label="ADVISORIES"
|
||||
className="custom-step"
|
||||
onClick={() => setActiveStep(4)}
|
||||
completed={activeStep > 3}
|
||||
/>
|
||||
</Stepper>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
const stepStyle = {
|
||||
activeBgColor: '#2A4CF4',
|
||||
completedBgColor: '#a10308',
|
||||
inactiveBgColor: '#e0e0e0',
|
||||
// For default dots:
|
||||
inactiveBgColor: '#FFFFFF',
|
||||
inactiveBorderColor: '#E0E0E0', // added this for border color
|
||||
inactiveBorderWidth: '2px', // added this for border width
|
||||
|
||||
// For active dots:
|
||||
activeBgColor: '#FFFFFF',
|
||||
activeBorderColor: '#2A4CF4', // added this for border color
|
||||
activeBorderWidth: '2px', // added this for border width
|
||||
|
||||
// For completed dots:
|
||||
completedBgColor: '#2A4CF4',
|
||||
|
||||
activeTextColor: '#ffffff',
|
||||
completedTextColor: '#ffffff',
|
||||
inactiveTextColor: '#000000', // assuming you want black text for inactive steps
|
||||
size: '2em',
|
||||
circleFontSize: '1rem',
|
||||
size: '20px', // Width & height of the circle dot
|
||||
circleFontSize: '10px', // This makes the numbers in the circle smaller
|
||||
labelFontSize: '0.875rem',
|
||||
borderRadius: '50%',
|
||||
fontWeight: 500,
|
||||
}
|
||||
|
||||
const customConnectorStyle = {
|
||||
size: '2px',
|
||||
activeColor: '#2A4CF4',
|
||||
disabledColor: '#bdbdbd', // color when a step is disabled
|
||||
completedColor: '#a10308', // color for completed steps
|
||||
backgroundColor: '#DDE1E6',
|
||||
height: '2px',
|
||||
style: 'solid', // style of the connector line
|
||||
}
|
||||
|
||||
|
36
src/pages/ValidatorOnboarding/StepperStyles.css
Normal file
36
src/pages/ValidatorOnboarding/StepperStyles.css
Normal file
@ -0,0 +1,36 @@
|
||||
.custom-step {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
.custom-step.StepMain--active,
|
||||
.custom-step.StepMain--completed {
|
||||
background-color: #2a4cf4;
|
||||
}
|
||||
|
||||
.custom-step::before {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border: 2px solid #e0e0e0;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.custom-step.StepMain--active::before,
|
||||
.custom-step.StepMain--completed::before {
|
||||
border-color: #2a4cf4;
|
||||
}
|
||||
|
||||
.custom-step.StepMain--active::after {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background-color: #2a4cf4;
|
||||
border-radius: 50%;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
@ -19,10 +19,11 @@ function ValidatorOnboarding() {
|
||||
<PageWrapperShadow rightImageSrc="./background-images/landing-page-bg.png">
|
||||
<YStack className="landing-page">
|
||||
<YStack style={{ width: '100%', margin: '30vh 0 4vh' }}>
|
||||
<Title>Light and performant clients, for all Ethereum validators.</Title>
|
||||
<Text size={19} weight={'semibold'}>
|
||||
Create Nimbus Validator
|
||||
</Text>
|
||||
<Text size={15} weight="regular">
|
||||
<strong>Nimbus Nodes</strong> allows you to take control and ownership of the services
|
||||
you wish to run in a completely trustless and decentralized manner.
|
||||
Earn Rewards for securing the Ethereum Network
|
||||
</Text>
|
||||
</YStack>
|
||||
<FormStepper />
|
||||
|
Loading…
x
Reference in New Issue
Block a user