Skip to content

Commit

Permalink
feat(dashboard): change the color of the current rollout step (#3526)
Browse files Browse the repository at this point in the history
I feel that having the current (running) step in a orange color is misleading,
as orange usually means warning.

This commit changes the color to the `$argo-running-color`.

Signed-off-by: Alejandro López Sánchez <alejandro.lopez@factorial.co>
  • Loading branch information
alopezsanchez committed Apr 29, 2024
1 parent 63fd6e3 commit 9f00419
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/src/app/components/rollout/rollout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

background: $argo-color-gray-1;
border-radius: 5px;

&__header {
display: flex;
align-items: center;
Expand Down Expand Up @@ -53,11 +53,11 @@
}

&--current {
border: 2px solid $sherbert;
border: 2px solid $argo-running-color;
}

&--current:hover {
border: 2px solid $sherbert;
border: 2px solid $argo-running-color;
}

&-title {
Expand Down

0 comments on commit 9f00419

Please sign in to comment.