From e8bd9e7ffd50fb47bc4611abbc6bf1b527cb5c92 Mon Sep 17 00:00:00 2001 From: Josh Miller Date: Fri, 26 Apr 2024 16:16:19 +0100 Subject: [PATCH] Refactor NoFundsCTAFlex styles in MainAddFunds.tsx --- frontend/components/Main/MainAddFunds.tsx | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/frontend/components/Main/MainAddFunds.tsx b/frontend/components/Main/MainAddFunds.tsx index 07c24651f..b3360844e 100644 --- a/frontend/components/Main/MainAddFunds.tsx +++ b/frontend/components/Main/MainAddFunds.tsx @@ -102,15 +102,9 @@ export const MainAddFunds = () => { ); }; -const NoFundsCTAFlex: React.FC = styled(Flex)` - margin-top: 10; - border: '1px solid lightgrey'; - border-radius: '2.5px'; - padding: 10; - - a { - font-size: 'medium'; - text-decoration: 'underline'; - color: 'black'; - } +const NoFundsCTAFlex = styled(Flex)` + margin-top: 10px; + border: 1px solid lightgrey; + border-radius: 2.5px; + padding: 10px; `;