Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Employee_Managment_App/src/components/Policies.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down
1 change: 1 addition & 0 deletions Employee_Managment_App/src/components/Policies.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ const Policies: React.FC = () => {
target=".policies-grid-wrapper"
cssClass="policy-dialog"
close={onDialogClose}
animationSettings={{ duration: 0 }}
>
{selected && (
<div className="policy-dialog__content">
Expand Down
2 changes: 2 additions & 0 deletions Employee_Managment_App/src/components/TopNav.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@

.company-name {
font-size: 16px;
font-weight: bold;
color: rgba(0, 0, 0, 0.87);
}

Expand Down Expand Up @@ -313,6 +314,7 @@
/* Badge */
.badge {
position: absolute;
font-family: 'Roboto', sans-serif;
top: -4px;
right: -4px;
min-width: 18px;
Expand Down
11 changes: 0 additions & 11 deletions Employee_Managment_App/src/components/TopNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ type TopNavProps = {
onOpenTasks?: () => void;
onOpenApps?: () => void;
onOpenAnnouncements?: () => void;
onHelp?: () => void;
onProfile?: () => void;
onSignOut?: () => void;
userFullName?: string;
Expand Down Expand Up @@ -53,7 +52,6 @@ const TopNav: React.FC<TopNavProps> = ({
onOpenTasks,
onOpenApps,
onOpenAnnouncements,
onHelp,
onProfile,
onSignOut,
userFullName = 'Test Person',
Expand Down Expand Up @@ -225,15 +223,6 @@ const TopNav: React.FC<TopNavProps> = ({
)}
</button>

<button className="icon-btn" type="button" onClick={onHelp} title="Help">
<svg width="20" height="20" viewBox="0 0 24 24" aria-hidden="true">
<path
fill="currentColor"
d="M11 18h2v2h-2zm1-16c-5 0-9 4-9 9s4 9 9 9s9-4 9-9s-4-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7s7 3.14 7 7s-3.14 7-7 7zm-.88-5h1.76v-1c0-1.1 2.12-1.38 2.12-3.25c0-1.65-1.35-2.75-3-2.75c-1.52 0-2.64.83-3.02 2.06l1.64.66c.16-.54.63-1.06 1.38-1.06c.69 0 1.24.42 1.24 1.06c0 1.18-2.12 1.45-2.12 3.28v1z"
/>
</svg>
</button>

<div className="topnav-avatar-wrapper" ref={avatarRef}>
<ButtonComponent
cssClass="topnav-avatar"
Expand Down