Merge branch 'hn.validator-onboarding' of https://github.com/nimbus-gui/nimbus-gui into hn.validator-onboarding

This commit is contained in:
Hristo Nedelkov 2023-09-05 10:23:20 +03:00
commit 4a50a2a4d6
2 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
import { Stack, XStack, YStack } from 'tamagui'
import { Text } from '@status-im/components'
import { useDispatch, useSelector } from 'react-redux'
import Icon from '../../../components/General/Icon'
import { selectClient } from '../../../redux/ValidatorOnboarding/ValidatorSetup/slice'
import { useDispatch, useSelector } from 'react-redux'
import { RootState } from '../../../redux/store'
type ExecClientCardProps = {
@ -20,7 +20,7 @@ const ExecClientCard = ({ name, icon, isComingSoon }: ExecClientCardProps) => {
return (
<YStack
style={{
backgroundColor: isComingSoon ? '#F5F5F5' : isSelected ? '#2A4AF50D' : 'none',
backgroundColor: isSelected ? '#2A4AF50D' : 'none',
border: isComingSoon
? '1px solid #F5F6F8'
: isSelected

View File

@ -17,7 +17,7 @@ const ValidatorSetup = () => {
<YStack>
<Stack style={{ marginBottom: '4px' }}>
<Text size={13} color="#647084">
<Text size={13} color="#647084" weight={'semibold'}>
Execution Client Detection
</Text>
</Stack>