diff --git a/Employee_Managment_App/src/components/Policies.css b/Employee_Managment_App/src/components/Policies.css index 43f49ef..840cfa8 100644 --- a/Employee_Managment_App/src/components/Policies.css +++ b/Employee_Managment_App/src/components/Policies.css @@ -100,8 +100,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 60e460b..56463e3 100644 --- a/Employee_Managment_App/src/components/Policies.tsx +++ b/Employee_Managment_App/src/components/Policies.tsx @@ -179,6 +179,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 535aa68..ccaa746 100644 --- a/Employee_Managment_App/src/components/TopNav.css +++ b/Employee_Managment_App/src/components/TopNav.css @@ -85,6 +85,7 @@ .company-name { font-size: 16px; + font-weight: bold; color: rgba(0, 0, 0, 0.87); } @@ -315,6 +316,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 10752af..0f18579 100644 --- a/Employee_Managment_App/src/components/TopNav.tsx +++ b/Employee_Managment_App/src/components/TopNav.tsx @@ -22,7 +22,6 @@ type TopNavProps = { onOpenTasks?: () => void; onOpenApps?: () => void; onOpenAnnouncements?: () => void; - onHelp?: () => void; onProfile?: () => void; onSignOut?: () => void; userFullName?: string; @@ -50,7 +49,6 @@ const TopNav: React.FC = ({ onOpenTasks, onOpenApps, onOpenAnnouncements, - onHelp, onProfile, onSignOut, userFullName = 'Test Person', @@ -242,15 +240,6 @@ const TopNav: React.FC = ({ )} - -