Skip to content

Commit

Permalink
used color that is used in Chore/css changes PalisadoesFoundation#2466
Browse files Browse the repository at this point in the history
…in the place of green using variable
  • Loading branch information
Dhiren-Mhatre committed Dec 30, 2024
1 parent 04e8dd4 commit 10bfe21
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/style/app.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@
--grey-bg-color-dark: #707070;
--dropdown-border-color: #cccccc;
--primary-border-solid: 1px solid var(--dropdown-border-color);
--status-accepted-color: #eaebef;
--status-pending-color: #ed6c02;
--groups-label-color: grey;
}
.fonts {
color: var(--grey-bg-color-dark);
Expand Down Expand Up @@ -4151,13 +4154,13 @@ button[data-testid='createPostBtn'] {
}

.acceptedStatus {
color: green;
-webkit-text-fill-color: green;
color: var(--status-accepted-color);
-webkit-text-fill-color: var(--status-accepted-color);
}

.pendingStatus {
color: #ed6c02;
-webkit-text-fill-color: #ed6c02;
color: var(--status-pending-color);
-webkit-text-fill-color: var(--status-pending-color);
}

.hoursField {
Expand All @@ -4169,7 +4172,7 @@ button[data-testid='createPostBtn'] {
margin-left: 0.5rem;
margin-bottom: 0;
font-size: 0.8rem;
color: grey;
color: var(--groups-label-color);
}

.tableHeader {
Expand Down

0 comments on commit 10bfe21

Please sign in to comment.