From e76b4f00a2050b30c728bc8878207adc1af86819 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Tue, 26 Mar 2024 11:40:15 +0200 Subject: [PATCH] fix(manage-validator): paddings of the left side --- .../ManageValidator/LeftManage/LeftManage.tsx | 38 ++++++++++--------- .../ValidatorDataTabs.tsx | 9 ++--- .../LeftManage/PageParts/Footer.tsx | 7 +--- .../LeftManage/PageParts/Header.tsx | 8 +++- .../DepositStatus/DepositStatus.tsx | 10 ++--- .../ValidatorBlueSection/ValidatorBalance.tsx | 4 -- .../ValidatorBlueSection.tsx | 6 ++- .../ValidatorBlueSection/ValidatorInfo.tsx | 2 +- .../ValidatorDataCards/ValidatorDataCards.tsx | 1 - .../ValidatorGraffiti/ValidatorGraffiti.tsx | 2 - .../ValidatorSettingsCards.tsx | 3 +- 11 files changed, 42 insertions(+), 48 deletions(-) diff --git a/src/pages/ManageValidator/LeftManage/LeftManage.tsx b/src/pages/ManageValidator/LeftManage/LeftManage.tsx index aaefcfeb..a1abcab8 100644 --- a/src/pages/ManageValidator/LeftManage/LeftManage.tsx +++ b/src/pages/ManageValidator/LeftManage/LeftManage.tsx @@ -1,5 +1,5 @@ import { useState } from 'react' -import { Stack } from 'tamagui' +import { YStack } from 'tamagui' import { InformationBox } from '@status-im/components' import { CloseCircleIcon } from '@status-im/icons' @@ -8,36 +8,38 @@ import ValidatorDataCards from './ValidatorDataCards/ValidatorDataCards' import ValidatorSettingsCards from './ValidatorSettingsCards/ValidatorSettingsCards' import ValidatorGraffiti from './ValidatorGraffiti/ValidatorGraffiti' import ValidatorDataTabs from './ManageValidatorTable/ValidatorDataTabs' -import Footer from './PageParts/Footer' import ValidatorBlueSection from './ValidatorBlueSection/ValidatorBlueSection' +import Footer from './PageParts/Footer' const LeftManage = () => { const [isVisibleWarning, setIsVisibleWarning] = useState(true) return ( -
- - - - - {isVisibleWarning && ( - } - onClosePress={() => setIsVisibleWarning(false)} - /> - )} -