File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
src/components/interesting-accounts Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export const PreviewAccountsGrid: FC = () => {
26
26
asPath + ( asPath === '/' ? '' : '/' ) + 'accounts'
27
27
28
28
const showAllButton = isClientSide ( ) ? (
29
- < div className = { clsx ( { [ 'pl -3 bs-mb-2' ] : isMobile } ) } >
29
+ < div className = { clsx ( { [ 'mt -3 bs-mb-2' ] : isMobile } ) } >
30
30
< Link href = { interestingAccountsUrl } legacyBehavior >
31
31
{ t ( 'general.showAll' ) }
32
32
</ Link >
@@ -36,14 +36,13 @@ export const PreviewAccountsGrid: FC = () => {
36
36
return (
37
37
< div >
38
38
< Row justify = 'space-between' >
39
- < Col >
39
+ < Col className = { clsx ( { [ 'w-100' ] : isMobile } ) } >
40
40
< SectionTitle
41
41
title = { t ( 'interestingAccounts.title' ) }
42
- className = { clsx ( { [ 'pr-3 pl-3' ] : isMobile } ) }
43
42
/>
44
43
</ Col >
45
44
{ ! isMobile && (
46
- < Col className = { clsx ( { [ 'bs-mr-3' ] : isMobile } , 'align-self-center' ) } >
45
+ < Col className = { clsx ( 'align-self-center' ) } >
47
46
{ showAllButton }
48
47
</ Col >
49
48
) }
@@ -59,7 +58,7 @@ export const PreviewAccountsGrid: FC = () => {
59
58
< Col
60
59
key = { x . account + x . type + x . relayChain }
61
60
span = { ! isMobile ? 6 : undefined }
62
- className = { 'bs-mb-3' }
61
+ className = { clsx ( 'bs-mb-3' , { [ 'w-50' ] : isMobile } ) }
63
62
>
64
63
< AccountCard accountData = { x } />
65
64
</ Col >
You can’t perform that action at this time.
0 commit comments