Move timestamp to same line

This commit is contained in:
Ian Philips 2022-07-06 13:45:31 -06:00
parent de20ee9fb9
commit 54b4f97a84

View File

@ -275,7 +275,7 @@ function IncomeNotificationGroupItem(props: {
)} )}
<Row className={'items-center text-gray-500 sm:justify-start'}> <Row className={'items-center text-gray-500 sm:justify-start'}>
<TrendingUpIcon className={'text-primary h-7 w-7'} /> <TrendingUpIcon className={'text-primary h-7 w-7'} />
<div className={'flex-1 overflow-hidden pl-2 sm:flex'}> <div className={'flex truncate'}>
<div <div
onClick={() => setExpanded(!expanded)} onClick={() => setExpanded(!expanded)}
className={'line-clamp-1 cursor-pointer pl-1 sm:pl-0'} className={'line-clamp-1 cursor-pointer pl-1 sm:pl-0'}
@ -286,8 +286,8 @@ function IncomeNotificationGroupItem(props: {
{'+' + formatMoney(totalIncome)} {'+' + formatMoney(totalIncome)}
</span> </span>
</span> </span>
<RelativeTimestamp time={notifications[0].createdTime} />
</div> </div>
<RelativeTimestamp time={notifications[0].createdTime} />
</div> </div>
</Row> </Row>
<div> <div>