pl-fe: styles

Signed-off-by: Nicole Mikołajczyk <git@mkljczk.pl>
This commit is contained in:
Nicole Mikołajczyk
2025-04-02 12:15:49 +02:00
parent 2059afb11e
commit 1869eee9c5
4 changed files with 3 additions and 4 deletions

View File

@ -191,7 +191,7 @@ const Account = ({
if (disabled) return (
<div data-testid='account' className='group block w-full shrink-0' ref={overflowRef}>
<HStack alignItems={actionAlignment} space={3} justifyContent='between'>
<HStack alignItems='center' space={3} className='overflow-hidden'>
<HStack alignItems='center' space={3}>
<div className='rounded-lg'>
<Avatar src={account.avatar} size={avatarSize} alt={account.avatar_description} isCat={account.is_cat} />
{emoji && (

View File

@ -90,7 +90,6 @@ const Report: React.FC<IReport> = ({ id }) => {
src={targetAccount.avatar}
alt={targetAccount.avatar_description}
size={32}
className='overflow-hidden'
isCat={targetAccount.is_cat}
/>
</Link>

View File

@ -88,7 +88,7 @@ const ChatListItem: React.FC<IChatListItemInterface> = ({ chat, onClick }) => {
tabIndex={0}
>
<HStack alignItems='center' justifyContent='between' space={2} className='w-full'>
<HStack alignItems='center' space={2} className='overflow-hidden'>
<HStack alignItems='center' space={2}>
<Avatar
src={chat.account.avatar}
alt={chat.account.avatar_description}

View File

@ -128,7 +128,7 @@ const ChatPageMain = () => {
return (
<Stack className='h-full overflow-hidden'>
<HStack alignItems='center' justifyContent='between' space={2} className='w-full p-4'>
<HStack alignItems='center' space={2} className='overflow-hidden'>
<HStack alignItems='center' space={2}>
<HStack alignItems='center'>
<IconButton
src={require('@tabler/icons/outline/arrow-left.svg')}