@@ -27,7 +27,7 @@ const WithTypographyAndLink: FC<{
2727 { labelOnly ? (
2828 < span className = "text-foreground font-medium" > { children } </ span >
2929 ) : (
30- < Link asChild className = "font-medium" >
30+ < Link asChild className = "font-mono font- medium" >
3131 < RouterLink to = { to } > { children } </ RouterLink >
3232 </ Link >
3333 ) }
@@ -128,12 +128,12 @@ const TrimmedAccountLink: FC<
128128 < WithTypographyAndLink scope = { scope } address = { address } labelOnly = { labelOnly } >
129129 < MaybeWithTooltip title = { tooltipTitle } >
130130 { showAccountName ? (
131- < span className = "flex items-center gap-1" >
131+ < span className = "flex items-center gap-1 font-mono font-medium " >
132132 < AccountMetadataSourceIndicator source = { accountMetadata ! . source } /> { ' ' }
133133 { trimLongString ( accountName , 12 , 0 ) }
134134 </ span >
135135 ) : (
136- trimLongString ( address , 6 , 6 )
136+ < span className = "font-mono font-medium" > { trimLongString ( address , 6 , 6 ) } </ span >
137137 ) }
138138 </ MaybeWithTooltip >
139139 </ WithTypographyAndLink >
@@ -155,15 +155,15 @@ const DesktopAccountLink: FC<
155155 < WithTypographyAndLink scope = { scope } address = { address } labelOnly = { labelOnly } >
156156 < MaybeWithTooltip title = { tooltipTitle } >
157157 { showAccountName ? (
158- < div className = "flex items-center flex-wrap gap-1" >
159- < span className = "inline-flex items-center gap-1" >
158+ < div className = "flex items-center flex-wrap gap-1 font-mono font-medium " >
159+ < span className = "font-sans inline-flex items-center gap-1" >
160160 < AccountMetadataSourceIndicator source = { accountMetadata ! . source } />
161161 < HighlightedText text = { accountName } />
162162 </ span >
163163 ({ address } )
164164 </ div >
165165 ) : (
166- address
166+ < span className = "font-mono font-medium" > { address } </ span >
167167 ) }
168168 </ MaybeWithTooltip >
169169 </ WithTypographyAndLink >
0 commit comments