Skip to content

Commit

Permalink
style: change description text description input and some text size i…
Browse files Browse the repository at this point in the history
…n transaction list
  • Loading branch information
uigywnkiub committed Jan 2, 2025
1 parent 180cde5 commit 9a363b9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/ui/home/transaction-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -397,13 +397,13 @@ function TransactionForm({ currency, userCategories }: TProps) {
aria-label='Description'
description={
<div className='flex flex-wrap items-center xxs:gap-0 xs:gap-1'>
<div className='flex'>
<AILogo asText={isAnyAIDataExist && !isLoadingAIData} />
</div>
<InfoText
text='Type thoughtfully to complete the remaining fields with'
text='fills in the remaining fields.'
withAsterisk={false}
/>
<div className='flex'>
<AILogo asText={isAnyAIDataExist && !isLoadingAIData} />.
</div>
</div>
}
value={description}
Expand Down
2 changes: 1 addition & 1 deletion app/ui/info-text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function InfoText({
id={id}
className={cn(
'text-default-500 hover:cursor-none hover:text-foreground',
isSm ? 'text-sm' : 'text-xs',
isSm ? 'text-xs md:text-sm' : 'text-xs',
)}
>
{withDoubleAsterisk && ' ** '}
Expand Down

0 comments on commit 9a363b9

Please sign in to comment.