@@ -200,12 +200,24 @@ export const ConnectPage: React.FC<ConnectPageProps> = ({
200
200
marginBottom = { 2 }
201
201
>
202
202
{ targetSubjectMetadata . iconUrl ? (
203
- < AvatarFavicon
204
- backgroundColor = { BackgroundColor . backgroundAlternative }
205
- size = { AvatarFaviconSize . Lg }
206
- src = { targetSubjectMetadata . iconUrl }
207
- name = { title }
208
- />
203
+ < >
204
+ < Box style = { { filter : 'blur(16px)' , position : 'absolute' } } >
205
+ < AvatarFavicon
206
+ backgroundColor = { BackgroundColor . backgroundAlternative }
207
+ size = { AvatarFaviconSize . Xl }
208
+ src = { targetSubjectMetadata . iconUrl }
209
+ name = { title }
210
+ style = { { filter : 'brightness(1.2)' } }
211
+ />
212
+ </ Box >
213
+ < AvatarFavicon
214
+ backgroundColor = { BackgroundColor . backgroundAlternative }
215
+ size = { AvatarFaviconSize . Lg }
216
+ src = { targetSubjectMetadata . iconUrl }
217
+ name = { title }
218
+ style = { { zIndex : 1 , background : 'transparent' } }
219
+ />
220
+ </ >
209
221
) : (
210
222
< AvatarBase
211
223
size = { AvatarBaseSize . Lg }
@@ -240,7 +252,7 @@ export const ConnectPage: React.FC<ConnectPageProps> = ({
240
252
} }
241
253
>
242
254
< Tab
243
- name = "Accounts"
255
+ name = { t ( 'accounts' ) }
244
256
tabKey = "accounts"
245
257
width = { BlockSize . Full }
246
258
data-testid = "accounts-tab"
@@ -249,7 +261,7 @@ export const ConnectPage: React.FC<ConnectPageProps> = ({
249
261
< Box
250
262
backgroundColor = { BackgroundColor . backgroundDefault }
251
263
borderRadius = { BorderRadius . XL }
252
- style = { { overflow : 'auto' , maxHeight : '240px ' } }
264
+ style = { { overflow : 'auto' , maxHeight : '290px ' } }
253
265
>
254
266
{ selectedAccounts . map ( ( account ) => (
255
267
< AccountListItem
@@ -282,7 +294,7 @@ export const ConnectPage: React.FC<ConnectPageProps> = ({
282
294
</ Box >
283
295
</ Tab >
284
296
< Tab
285
- name = "Permissions"
297
+ name = { t ( 'permissions' ) }
286
298
tabKey = "permissions"
287
299
width = { BlockSize . Full }
288
300
data-testid = "permissions-tab"
0 commit comments