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 imgHeight?: string
} }
const OverviewWrapper = ({ const OverviewWrapper = ({ rightImageSrc, children, imgHeight }: OverviewWrapperProps) => {
rightImageSrc,
children,
imgHeight,
}: OverviewWrapperProps) => {
const theme = useTheme() const theme = useTheme()
return ( return (

View File

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

View File

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

View File

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