Skip to content
This repository was archived by the owner on Jan 29, 2025. It is now read-only.

Commit 3c6c3a4

Browse files
authored
Merge pull request #438 from sinfo/little-fixes
Fix sidenav issues and change linkedin icon to white in login component
2 parents 550f82e + 5cc1c6d commit 3c6c3a4

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

src/app/auth/login/login.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h3>Login</h3>
1818
<div class="new-align-center" *ngIf="!submitting">
1919
<div id="google-button"></div>
2020
<a href="{{ linkedinUrlAuth }}" class="buttons btn-linkedin">
21-
<i class="fa fa-linkedin"></i>
21+
<i class="fa fa-linkedin text-white"></i>
2222
Sign in with LinkedIn
2323
</a>
2424
<a href="{{ fenixUrlAuth }}" class="buttons btn-fenix">

src/app/user/user.component.html

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<mat-toolbar class="topbar">
33
<button
44
mat-icon-button
5-
style="color: white; background-color: black"
5+
style="color: white; background-color: transparent"
66
class="menu-icon"
77
aria-label="Menu icon"
88
(click)="sidenav.toggle()"
@@ -71,13 +71,12 @@ <h2 *ngIf="user && user.role === 'team'" matSubheader style="color: grey;">Staff
7171
</div>
7272
</a>
7373
<mat-accordion *ngIf="user && user.role === 'team'">
74-
<mat-expansion-panel style="background-color: transparent !important">
74+
<mat-expansion-panel style="background-color: transparent; box-shadow: none;">
7575
<mat-expansion-panel-header class="specific-class">
7676
<a mat-list-item>
7777
<div class="navigation-link">
7878
<mat-icon>cake</mat-icon>
7979
<span class="list-item">Pick Winner</span>
80-
<mat-icon>keyboard_arrow_right</mat-icon>
8180
</div>
8281
</a>
8382
</mat-expansion-panel-header>
@@ -136,13 +135,12 @@ <h2 *ngIf="user && user.role === 'team'" matSubheader style="color: grey;">Compa
136135
</a>
137136

138137
<mat-accordion *ngIf="user && user.role === 'team'">
139-
<mat-expansion-panel style="background-color: transparent !important">
138+
<mat-expansion-panel style="background-color: transparent; box-shadow: none;">
140139
<mat-expansion-panel-header class="specific-class">
141140
<a mat-list-item class="navigation-link">
142141
<div class="navigation-link">
143142
<mat-icon>get_app</mat-icon>
144143
<span class="list-item">CV Downloads </span>
145-
<mat-icon>keyboard_arrow_right</mat-icon>
146144
</div>
147145
</a>
148146
</mat-expansion-panel-header>
@@ -209,13 +207,12 @@ <h2 *ngIf="user && user.role === 'team'" matSubheader style="color: grey;">Atend
209207
</a>
210208

211209
<mat-accordion *ngIf="user && user.role === 'team'">
212-
<mat-expansion-panel style="background-color: transparent !important">
210+
<mat-expansion-panel style="background-color: transparent; box-shadow: none;">
213211
<mat-expansion-panel-header class="specific-class">
214212
<a mat-list-item class="navigation-link">
215213
<div class="navigation-link">
216214
<mat-icon> business</mat-icon>
217215
<span class="list-item">Workshops</span>
218-
<mat-icon>keyboard_arrow_right</mat-icon>
219216
</div>
220217
</a>
221218
</mat-expansion-panel-header>

0 commit comments

Comments
 (0)