logo login

This commit is contained in:
hamid zarghami
2025-03-09 16:13:06 +03:30
parent 9e94aca9b3
commit 5066e9f262
4 changed files with 38 additions and 32 deletions
+2 -2
View File
@@ -23,11 +23,11 @@ const ServiceItem: FC<Props> = (props: Props) => {
return (
<div className={`flex-1 flex flex-col self-stretch min-w-[45%] xl:min-w-[30%] bg-white rounded-3xl xl:p-6 p-4 ${props.className} ${props.isDisabled ? 'opacity-50' : ''}`}>
<div className='flex gap-2 items-center'>
<div className='xl:size-[50px] size-10 overflow-hidden rounded-xl'>
<div className='xl:size-[50px] xl:min-w-[50px] min-w-10 size-10 overflow-hidden rounded-xl'>
<img src={item.icon} alt={item.name} className='w-full h-full' />
</div>
<div className='flex flex-col'>
<div className='xl:text-base text-sm'>
<div className=' text-sm'>
{item.name}
</div>
{