pl-fe: minor UI fixes

Signed-off-by: Nicole Mikołajczyk <git@mkljczk.pl>
This commit is contained in:
Nicole Mikołajczyk
2025-04-03 09:39:49 +02:00
parent 3515e31237
commit 50a764addd
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ const Avatar = (props: IAvatar) => {
return (
<StillImage
className={clsx('rounded-lg leading-[0]', isCat && 'avatar__cat bg-gray-200 dark:bg-gray-900', className)}
innerClassName='rounded-lg'
innerClassName='rounded-lg text-sm'
style={style}
src={src}
alt={alt || intl.formatMessage(messages.avatar)}

View File

@ -13,7 +13,7 @@ const AutosuggestAccount: React.FC<IAutosuggestAccount> = ({ id }) => {
return (
<div className='snap-start snap-always'>
<Account account={account} hideActions showAccountHoverCard={false} />
<Account account={account} hideActions showAccountHoverCard={false} disabled />
</div>
);