Skip to content

Commit 5c28a59

Browse files
committed
#19 get last changes and fix some colors
1 parent 35651ef commit 5c28a59

File tree

5 files changed

+18
-3
lines changed

5 files changed

+18
-3
lines changed

src/app/modules/project-management/components/create-project/create-project.component.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@
99
background-color: $modal-button-secondary;
1010
color: white;
1111
}
12+
13+
.item-list-hover:link {
14+
background-color: green;
15+
}

src/app/modules/shared/components/user/user.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
>
1010
<i class="far fa-user-circle"></i> Dario Herrera
1111
</a>
12-
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
13-
<a class="dropdown-item">Sign Out</a>
12+
<div class="dropdown-menu style-click" aria-labelledby="navbarDropdown">
13+
<a class="dropdown-item style-click" (click)="logout()">Sign Out</a>
1414
</div>
1515
</div>

src/app/modules/shared/components/user/user.component.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@import '../../../../../styles/colors.scss';
2+
13
.user-profile {
24
color: black;
35
cursor: pointer;
@@ -7,3 +9,8 @@
79
margin-left: 50%;
810
transform: translateX(-50%);
911
}
12+
13+
.style-click:active {
14+
background-image: $button-primary-color;
15+
color: white;
16+
}

src/app/modules/time-clock/pages/time-clock.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<div class="card">
77
<div class="card-body">
88
<p *ngIf="!isClockIn" class="card-title text-left">
9-
<strong>{{ username }}</strong> clocked <strong class="text-success">in</strong> at
9+
<strong>{{ username }}</strong> clocked <strong class="text-clock-in-color">in</strong> at
1010
<strong>{{ hour | number: '2.0-2' }}:{{ minute | number: '2.0-2' }}:{{ seconds | number: '2.0-2' }}</strong>
1111
</p>
1212
<p *ngIf="isClockIn" class="card-title text-left">

src/app/modules/time-clock/pages/time-clock.component.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,7 @@
2020
background: $button-secondary-color;
2121
color: white;
2222
}
23+
24+
.text-clock-in-color {
25+
color: $modal-button-secondary;
26+
}

0 commit comments

Comments
 (0)