Center more button

This commit is contained in:
ekzyis 2024-10-17 21:22:45 +02:00
parent d91c5c90de
commit 70858b97f7

View File

@ -43,7 +43,7 @@ export function WalletLogs ({ wallet, embedded }) {
? <div className='w-100 text-center'>loading...</div> ? <div className='w-100 text-center'>loading...</div>
: logs.length === 0 && <div className='w-100 text-center'>empty</div>} : logs.length === 0 && <div className='w-100 text-center'>empty</div>}
{hasMore {hasMore
? <Button onClick={loadMore} size='sm' className='mt-3'>Load More</Button> ? <div className='w-100 text-center'><Button onClick={loadMore} size='sm' className='mt-3'>more</Button></div>
: <div className='w-100 text-center'>------ start of logs ------</div>} : <div className='w-100 text-center'>------ start of logs ------</div>}
</div> </div>
</> </>