Skip to content

Commit

Permalink
wfprev 162 163 (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
yzlucas authored Nov 29, 2024
1 parent 602a6fa commit 5394ea2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<mat-icon >account_circle</mat-icon>
<span class="user-name">{{currentUser}}</span>
<!-- Replace this with signed in user once authentication piece is ready -->
<mat-icon>keyboard_arrow_down</mat-icon> <!-- Down Arrow -->
<mat-icon class="keyboard-arrow-down">keyboard_arrow_down</mat-icon> <!-- Down Arrow -->
</button>
<mat-menu #menu="matMenu">
<button mat-menu-item (click)="onLogoutClick()">Logout</button>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.header-container {
cursor: pointer;
height: var(--header-height);
background-color: var(--wf-header-background-color);
display: flex;
Expand All @@ -13,6 +12,8 @@

/* BC Logo Section */
.bc-logo {
cursor: pointer;

display: flex;
justify-content: flex-start;
align-items: center;
Expand Down Expand Up @@ -84,13 +85,14 @@
display: flex;
align-items: center;
color: white;

padding-right: 25px;
mat-icon {
margin-right: 5px;
}
}

.training {
cursor: pointer;
white-space: nowrap;
color: white;
&.can-click:hover {
Expand All @@ -106,4 +108,8 @@
height: 20px;
margin: 0 15px;
}


.keyboard-arrow-down{
position: fixed !important;
right: 5px;
}

0 comments on commit 5394ea2

Please sign in to comment.