This commit is contained in:
Hristo Nedelkov 2024-01-22 10:12:11 +02:00
parent b9ab061ed9
commit e1c4acf1ac
4 changed files with 4 additions and 8 deletions

View File

@ -9,11 +9,7 @@ type OverviewWrapperProps = {
imgHeight?: string
}
const OverviewWrapper = ({
rightImageSrc,
children,
imgHeight,
}: OverviewWrapperProps) => {
const OverviewWrapper = ({ rightImageSrc, children, imgHeight }: OverviewWrapperProps) => {
const theme = useTheme()
return (

View File

@ -17,7 +17,7 @@ import ContinueButton from './ContinueButton'
import ActivationValidatorSetup from './ValidatorSetup/ValidatorActivation/ActivationValidatorSetup'
import Deposit from './Deposit/Deposit'
import { useWindowSize } from '../../hooks/useWindowSize'
import styles from './layoutGradient.module.css'
import styles from './layoutGradient.module.css'
const ValidatorOnboarding = () => {
const { activeStep, subStepValidatorSetup } = useSelector(

View File

@ -8,7 +8,7 @@ type OSCardProps = {
}
const OSCard = ({ name, icon }: OSCardProps) => {
return (
<Stack >
<Stack>
<Text size={19} weight={'semibold'}>
{name}
</Text>

View File

@ -18,7 +18,7 @@ const ValidatorSetupInstall = () => {
}
return (
<YStack style={{ padding: '26px 32px', width:'fit-content'}} >
<YStack style={{ padding: '26px 32px', width: 'fit-content' }}>
<Text size={27} weight={'semibold'}>
Validator Setup
</Text>