hata düzeltme 2
This commit is contained in:
@@ -154,7 +154,7 @@ export default function EmployeeTable({
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Table Section */}
|
{/* Table Section */}
|
||||||
<div className="bg-white dark:bg-zinc-900 shadow-sm border border-slate-100 dark:border-zinc-800 rounded-[2.5rem] overflow-hidden">
|
<div className="bg-white dark:bg-zinc-900 shadow-sm border border-slate-100 dark:border-zinc-800 rounded-3xl overflow-hidden">
|
||||||
<div className="overflow-x-auto">
|
<div className="overflow-x-auto">
|
||||||
<table className="min-w-full divide-y divide-slate-50 dark:divide-zinc-800">
|
<table className="min-w-full divide-y divide-slate-50 dark:divide-zinc-800">
|
||||||
<thead className="bg-slate-50/50 dark:bg-zinc-800/50">
|
<thead className="bg-slate-50/50 dark:bg-zinc-800/50">
|
||||||
@@ -174,7 +174,7 @@ export default function EmployeeTable({
|
|||||||
{filteredEmployees.map((emp) => (
|
{filteredEmployees.map((emp) => (
|
||||||
<tr key={emp.id} className="group hover:bg-slate-50/50 dark:hover:bg-zinc-800/20 transition-all duration-500">
|
<tr key={emp.id} className="group hover:bg-slate-50/50 dark:hover:bg-zinc-800/20 transition-all duration-500">
|
||||||
{/* Personel */}
|
{/* Personel */}
|
||||||
<td className="whitespace-nowrap py-6 pl-8 pr-3">
|
<td className="whitespace-nowrap py-4 sm:py-5 pl-8 pr-3">
|
||||||
<div className="flex items-center gap-4">
|
<div className="flex items-center gap-4">
|
||||||
{emp.photo_url ? (
|
{emp.photo_url ? (
|
||||||
<img src={emp.photo_url} alt="" className="w-14 h-14 rounded-2xl object-cover shadow-lg shadow-blue-900/10 group-hover:scale-110 transition-transform duration-500" />
|
<img src={emp.photo_url} alt="" className="w-14 h-14 rounded-2xl object-cover shadow-lg shadow-blue-900/10 group-hover:scale-110 transition-transform duration-500" />
|
||||||
@@ -209,7 +209,7 @@ export default function EmployeeTable({
|
|||||||
</td>
|
</td>
|
||||||
|
|
||||||
{/* Bölüm / Görev */}
|
{/* Bölüm / Görev */}
|
||||||
<td className="whitespace-nowrap px-3 py-6">
|
<td className="whitespace-nowrap px-3 py-4 sm:py-5">
|
||||||
<div className="flex items-start gap-2">
|
<div className="flex items-start gap-2">
|
||||||
<BuildingOffice2Icon className="w-4 h-4 text-slate-300 mt-0.5" />
|
<BuildingOffice2Icon className="w-4 h-4 text-slate-300 mt-0.5" />
|
||||||
<div>
|
<div>
|
||||||
@@ -222,7 +222,7 @@ export default function EmployeeTable({
|
|||||||
</td>
|
</td>
|
||||||
|
|
||||||
{/* İletişim */}
|
{/* İletişim */}
|
||||||
<td className="whitespace-nowrap px-3 py-6">
|
<td className="whitespace-nowrap px-3 py-4 sm:py-5">
|
||||||
<div className="space-y-1.5">
|
<div className="space-y-1.5">
|
||||||
<div className="flex items-center gap-2 text-slate-500 dark:text-slate-400">
|
<div className="flex items-center gap-2 text-slate-500 dark:text-slate-400">
|
||||||
<EnvelopeIcon className="w-3.5 h-3.5" />
|
<EnvelopeIcon className="w-3.5 h-3.5" />
|
||||||
@@ -236,7 +236,7 @@ export default function EmployeeTable({
|
|||||||
</td>
|
</td>
|
||||||
|
|
||||||
{/* Tarihler */}
|
{/* Tarihler */}
|
||||||
<td className="whitespace-nowrap px-3 py-6">
|
<td className="whitespace-nowrap px-3 py-4 sm:py-5">
|
||||||
<div className="space-y-1.5">
|
<div className="space-y-1.5">
|
||||||
<div className="flex items-center gap-2 text-slate-400">
|
<div className="flex items-center gap-2 text-slate-400">
|
||||||
<CalendarDaysIcon className="w-3.5 h-3.5 text-emerald-500" />
|
<CalendarDaysIcon className="w-3.5 h-3.5 text-emerald-500" />
|
||||||
|
|||||||
Reference in New Issue
Block a user