@@ -9,18 +9,22 @@ import WalletSettings from './WalletSettings';
99import GeneralSettings from './GeneralSettings' ;
1010import RelayInfoSettings from './RelayInfoSettings' ;
1111import * as S from '@app/pages/DashboardPages/DashboardPage.styles' ;
12+ import * as PageStyles from '@app/pages/uiComponentsPages/UIComponentsPage.styles' ;
1213import { CollapsibleSection } from '@app/components/relay-settings/shared/CollapsibleSection/CollapsibleSection' ;
1314import { Balance } from '@app/components/relay-dashboard/Balance/Balance' ;
1415import { TotalEarning } from '@app/components/relay-dashboard/totalEarning/TotalEarning' ;
1516import { ActivityStory } from '@app/components/relay-dashboard/transactions/Transactions' ;
1617
1718const SettingsPage : React . FC = ( ) => {
1819 return (
19- < >
20+ < S . DashboardWrapper >
2021 < PageTitle > Advanced Settings</ PageTitle >
21- < S . DashboardWrapper >
22- < BaseRow >
23- < S . LeftSideCol xl = { 16 } xxl = { 17 } id = "desktop-content" >
22+ < BaseRow >
23+ < S . LeftSideCol xl = { 16 } xxl = { 17 } id = "desktop-content" >
24+ < PageStyles . HeadingContainer >
25+ < PageStyles . LabelSpan > Advanced Settings</ PageStyles . LabelSpan >
26+ </ PageStyles . HeadingContainer >
27+
2428 < CollapsibleSection header = "General Settings" >
2529 < GeneralSettings />
2630 </ CollapsibleSection >
@@ -44,26 +48,25 @@ const SettingsPage: React.FC = () => {
4448 < CollapsibleSection header = "Wallet Settings" >
4549 < WalletSettings />
4650 </ CollapsibleSection >
47- </ S . LeftSideCol >
51+ </ S . LeftSideCol >
4852
49- < S . RightSideCol xl = { 8 } xxl = { 7 } >
50- < S . RightSideContentWrapper >
51- < div id = "balance" className = "liquid-element" >
52- < Balance />
53- </ div >
54- < S . Space />
55- < div id = "total-earning" className = "liquid-element" >
56- < TotalEarning />
57- </ div >
58- < S . Space />
59- < div id = "activity-story" className = "liquid-element" >
60- < ActivityStory />
61- </ div >
62- </ S . RightSideContentWrapper >
63- </ S . RightSideCol >
64- </ BaseRow >
65- </ S . DashboardWrapper >
66- </ >
53+ < S . RightSideCol xl = { 8 } xxl = { 7 } >
54+ < S . RightSideContentWrapper >
55+ < div id = "balance" className = "liquid-element" >
56+ < Balance />
57+ </ div >
58+ < S . Space />
59+ < div id = "total-earning" className = "liquid-element" >
60+ < TotalEarning />
61+ </ div >
62+ < S . Space />
63+ < div id = "activity-story" className = "liquid-element" >
64+ < ActivityStory />
65+ </ div >
66+ </ S . RightSideContentWrapper >
67+ </ S . RightSideCol >
68+ </ BaseRow >
69+ </ S . DashboardWrapper >
6770 ) ;
6871} ;
6972
0 commit comments