Skip to content

Commit

Permalink
add manager portal
Browse files Browse the repository at this point in the history
Signed-off-by: MohammedAbdi <[email protected]>
  • Loading branch information
mamy-CS committed Oct 1, 2024
1 parent 7b9a282 commit a4ed19a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
5 changes: 5 additions & 0 deletions frontend/src/components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,11 @@ class NavigationBar extends Component<NavigationBarProp, NavigationBarState> {
<h5>ADMIN PORTAL</h5>
</div>
}
{IsManager &&
<div className="manager-toolbar-header">
<h5>MANAGER PORTAL</h5>
</div>
}
{IsManager && managerNavs}
</div>
</div>
Expand Down
12 changes: 12 additions & 0 deletions frontend/src/components/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,18 @@
margin-top: 7px;
}

.manager-toolbar-header {
position: relative;
display: inline;
padding: 15px;
color: white;
border: 0.1px solid white;
padding: 4px;
float: right;
margin-right: 10px;
margin-top: 7px;
}

.health-check {
position: relative;
z-index: 3;
Expand Down

0 comments on commit a4ed19a

Please sign in to comment.