diff --git a/Employee_Managment_App/src/components/Policies.css b/Employee_Managment_App/src/components/Policies.css
index 75f55fa..e148ce5 100644
--- a/Employee_Managment_App/src/components/Policies.css
+++ b/Employee_Managment_App/src/components/Policies.css
@@ -99,8 +99,8 @@
.section-title {
margin: 0;
- font-size: 14px;
- font-weight: 600;
+ font-size: 18px;
+ font-weight: 700;
font-family: 'Roboto', sans-serif;
}
diff --git a/Employee_Managment_App/src/components/Policies.tsx b/Employee_Managment_App/src/components/Policies.tsx
index 2659e08..e8cfb5a 100644
--- a/Employee_Managment_App/src/components/Policies.tsx
+++ b/Employee_Managment_App/src/components/Policies.tsx
@@ -180,6 +180,7 @@ const Policies: React.FC = () => {
target=".policies-grid-wrapper"
cssClass="policy-dialog"
close={onDialogClose}
+ animationSettings={{ duration: 0 }}
>
{selected && (
diff --git a/Employee_Managment_App/src/components/TopNav.css b/Employee_Managment_App/src/components/TopNav.css
index 724455d..283e1fa 100644
--- a/Employee_Managment_App/src/components/TopNav.css
+++ b/Employee_Managment_App/src/components/TopNav.css
@@ -84,6 +84,7 @@
.company-name {
font-size: 16px;
+ font-weight: bold;
color: rgba(0, 0, 0, 0.87);
}
@@ -313,6 +314,7 @@
/* Badge */
.badge {
position: absolute;
+ font-family: 'Roboto', sans-serif;
top: -4px;
right: -4px;
min-width: 18px;
diff --git a/Employee_Managment_App/src/components/TopNav.tsx b/Employee_Managment_App/src/components/TopNav.tsx
index 12062fb..f552645 100644
--- a/Employee_Managment_App/src/components/TopNav.tsx
+++ b/Employee_Managment_App/src/components/TopNav.tsx
@@ -23,7 +23,6 @@ type TopNavProps = {
onOpenTasks?: () => void;
onOpenApps?: () => void;
onOpenAnnouncements?: () => void;
- onHelp?: () => void;
onProfile?: () => void;
onSignOut?: () => void;
userFullName?: string;
@@ -53,7 +52,6 @@ const TopNav: React.FC
= ({
onOpenTasks,
onOpenApps,
onOpenAnnouncements,
- onHelp,
onProfile,
onSignOut,
userFullName = 'Test Person',
@@ -225,15 +223,6 @@ const TopNav: React.FC = ({
)}
-
-