From 1ce37d3b40dd722597bcdae1f953750bab4abfea Mon Sep 17 00:00:00 2001 From: Hristo Nedelkov Date: Thu, 31 Aug 2023 14:56:10 +0300 Subject: [PATCH] style: tweaks --- src/components/General/LinkWithArrow.tsx | 12 ++++++++++-- .../ValidatorSetup/ConsensusSelection.tsx | 7 ++++--- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/src/components/General/LinkWithArrow.tsx b/src/components/General/LinkWithArrow.tsx index 6f9dcce9..c547caea 100644 --- a/src/components/General/LinkWithArrow.tsx +++ b/src/components/General/LinkWithArrow.tsx @@ -8,9 +8,17 @@ type LinkWithArrowProps = { arrowLeft?: boolean arrowRight?: boolean style?: React.CSSProperties + textColor?: string } -const LinkWithArrow = ({ text, to, arrowLeft, arrowRight, style }: LinkWithArrowProps) => { +const LinkWithArrow = ({ + text, + to, + arrowLeft, + arrowRight, + style, + textColor, +}: LinkWithArrowProps) => { const navigate = useNavigate() const navigateHandler = () => { @@ -29,7 +37,7 @@ const LinkWithArrow = ({ text, to, arrowLeft, arrowRight, style }: LinkWithArrow onClick={navigateHandler} > {arrowLeft && } - + {text} {arrowRight && } diff --git a/src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx b/src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx index b3aa9752..db2658e8 100644 --- a/src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx +++ b/src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx @@ -50,16 +50,17 @@ const ConsensusSelection = () => { - - The resource efficient Ethereum Clients. + + The resource efficient Ethereum Clients. Nimbus is a client implementation for both execution and consensus layers that strives to be as lightweight as possible in terms of resources used. This allows it to perform well on embedded systems, resource-restricted devices -- including Raspberry Pis -- and multi-purpose servers. - +