Skip to content

Commit

Permalink
fix: css avatar employee
Browse files Browse the repository at this point in the history
  • Loading branch information
Innocent-Akim committed Dec 22, 2024
1 parent 3175a6d commit af8dfa6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ export function DataTableTimeSheet({ data, user }: { data?: GroupedTimesheet[],
className="flex items-center gap-x-2 w-[108px] h-[30px] rounded-[8px] bg-[#E4E4E7] dark:bg-gray-800 shadow-md py-[6px] px-[8px] border-[1px] border-[#E4E4E7] dark:border-gray-700 opacity-50"
>
<span className="text-[#5f5f61] text-[14px] font-[700px]">{t('timer.TOTAL_HOURS').split(' ')[0]}:</span>
<TotalTimeDisplay timesheetLog={rows} className='text-[#293241] text-[14px]' />
<TotalTimeDisplay timesheetLog={rows} className='!text-[#293241] text-[14px]' />
</Badge>
</div>
<div className={clsxm('flex items-center gap-2 p-x-1 capitalize')}>
Expand Down Expand Up @@ -351,6 +351,7 @@ export function DataTableTimeSheet({ data, user }: { data?: GroupedTimesheet[],
</div>
<div className="flex items-center flex-1 gap-x-2">
<EmployeeAvatar
className='w-[28px] h-[28px] drop-shadow-[0_4px_4px_rgba(0,0,0,0.25)] rounded-full'
imageUrl={task.employee.user.imageUrl!}
/>
<span className="flex-1 font-medium">{task.employee.fullName}</span>
Expand Down

0 comments on commit af8dfa6

Please sign in to comment.