mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-07 17:45:42 +00:00
fix ui
This commit is contained in:
@@ -118,7 +118,7 @@ const OrgAdminDashboard = () => {
|
||||
title: t("dashboard.totalEmployees"),
|
||||
value: activeReport?.employeesCount?.toLocaleString() || "0",
|
||||
icon: Users,
|
||||
color: "from-blue-500 to-blue-600",
|
||||
color: "from-primary-500 to-primary-600",
|
||||
},
|
||||
...(!isUnitAdmin
|
||||
? [{
|
||||
@@ -147,7 +147,7 @@ const OrgAdminDashboard = () => {
|
||||
description: t("dashboard.userManagementDesc"),
|
||||
icon: Users,
|
||||
action: () => navigate("/user-management/user_management"),
|
||||
color: "bg-gradient-to-r from-blue-500 to-cyan-600",
|
||||
color: "bg-gradient-to-r from-primary-500 to-primary-600",
|
||||
},
|
||||
{
|
||||
id: "content-mgmt",
|
||||
@@ -155,7 +155,7 @@ const OrgAdminDashboard = () => {
|
||||
description: t("dashboard.contentManagementDesc"),
|
||||
icon: Files,
|
||||
action: () => navigate("/user-management/content-management"),
|
||||
color: "bg-gradient-to-r from-purple-500 to-indigo-600",
|
||||
color: "bg-gradient-to-r from-purple-500 to-primary-600",
|
||||
},
|
||||
{
|
||||
id: "excel-upload",
|
||||
@@ -187,7 +187,7 @@ const OrgAdminDashboard = () => {
|
||||
description: t("dashboard.webManagementDesc"),
|
||||
icon: FileText,
|
||||
action: () => navigate("/user-management/web-management"),
|
||||
color: "bg-gradient-to-r from-teal-500 to-cyan-600",
|
||||
color: "bg-gradient-to-r from-teal-500 to-primary-600",
|
||||
},
|
||||
];
|
||||
|
||||
@@ -278,7 +278,7 @@ const OrgAdminDashboard = () => {
|
||||
: getStats().map((stat) => (
|
||||
<Card
|
||||
key={`stat-${stat.id}`}
|
||||
className="hover:shadow-lg transition-shadow duration-200 border-l-4 border-l-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:border-l-blue-500"
|
||||
className="hover:shadow-lg transition-shadow duration-200 border-l-4 border-l-primary-500 dark:bg-gray-800 dark:border-gray-700 dark:border-l-primary-500"
|
||||
>
|
||||
<CardContent className="p-6">
|
||||
<div className="flex items-center justify-between">
|
||||
|
||||
Reference in New Issue
Block a user