feat: style details in validator setup
This commit is contained in:
parent
d42a273e7a
commit
d1845df34d
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue