@@ -26,7 +26,7 @@ import { useUserMultisigs } from "@/hooks/multisig/useUserMultisigs";
2626import { getUserId , NetworkKind } from "@/networks" ;
2727import { ScreenFC , useAppNavigation } from "@/utils/navigation" ;
2828import { neutral33 , neutral77 , secondaryColor } from "@/utils/style/colors" ;
29- import { fontSemibold16 , fontSemibold28 } from "@/utils/style/fonts" ;
29+ import { fontRegular16 , fontRegular28 } from "@/utils/style/fonts" ;
3030import { layout } from "@/utils/style/layout" ;
3131import { tinyAddress } from "@/utils/text" ;
3232
@@ -49,28 +49,25 @@ export const MultisigScreen: ScreenFC<"Multisig"> = () => {
4949 return (
5050 < ScreenContainer
5151 headerChildren = { < ScreenTitle > Multisig Wallets</ ScreenTitle > }
52- footerChildren = { < > </ > }
53- noMargin
54- fullWidth
52+ isLarge
5553 onBackPress = { ( ) => navigation . navigate ( "Multisig" ) }
56- noScroll
5754 forceNetworkKind = { NetworkKind . Cosmos }
5855 >
5956 < ScrollView >
6057 < View style = { containerCStyle } >
61- < View style = { horizontalContentPaddingCStyle } >
58+ < View >
6259 < View
6360 style = { {
6461 flexDirection : "row" ,
6562 justifyContent : "space-between" ,
6663 alignItems : "center" ,
6764 } }
6865 >
69- < BrandText style = { fontSemibold28 } > My Multisigs</ BrandText >
66+ < BrandText style = { fontRegular28 } > My Multisigs</ BrandText >
7067 < LoginButton userId = { selectedWallet ?. userId } />
7168 </ View >
7269 < SpacerColumn size = { 1.5 } />
73- < BrandText style = { [ fontSemibold16 , { color : neutral77 } ] } >
70+ < BrandText style = { [ fontRegular16 , { color : neutral77 } ] } >
7471 Overview of your Multisignatures Wallets
7572 </ BrandText >
7673 < SpacerColumn size = { 2.5 } />
@@ -119,10 +116,10 @@ export const MultisigScreen: ScreenFC<"Multisig"> = () => {
119116 < SpacerColumn size = { 3 } />
120117 { ! ! invitations ?. length && (
121118 < >
122- < View style = { horizontalContentPaddingCStyle } >
123- < BrandText style = { fontSemibold28 } > Invitations</ BrandText >
119+ < View >
120+ < BrandText style = { fontRegular28 } > Invitations</ BrandText >
124121 < SpacerColumn size = { 1.5 } />
125- < BrandText style = { [ fontSemibold16 , { color : neutral77 } ] } >
122+ < BrandText style = { [ fontRegular16 , { color : neutral77 } ] } >
126123 Multisignatures Wallets you did not join yet
127124 </ BrandText >
128125 < SpacerColumn size = { 2.5 } />
@@ -166,7 +163,7 @@ export const MultisigScreen: ScreenFC<"Multisig"> = () => {
166163 </ >
167164 ) }
168165 { ! ! authToken && (
169- < View style = { horizontalContentPaddingCStyle } >
166+ < View >
170167 < Separator color = { neutral33 } />
171168 < SpacerColumn size = { 3 } />
172169 < MultisigTransactions
@@ -186,10 +183,6 @@ const containerCStyle: ViewStyle = {
186183 paddingTop : layout . topContentSpacingWithHeading ,
187184} ;
188185
189- const horizontalContentPaddingCStyle : ViewStyle = {
190- paddingHorizontal : layout . contentSpacing ,
191- } ;
192-
193186const contentCenterCStyle : ViewStyle = {
194187 flex : 1 ,
195188 justifyContent : "center" ,
0 commit comments