Skip to content

Commit

Permalink
feat: add warning color LinearProgressBar (#1845)
Browse files Browse the repository at this point in the history
  • Loading branch information
rongabbay authored Dec 24, 2023
1 parent b640bb5 commit aacfe1f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
background-color: var(--negative-color);
}

.typePrimaryWarning {
background-color: var(--warning-color);
}

.typeSecondaryPrimary {
background-color: var(--primary-selected-color);
}
Expand All @@ -37,6 +41,10 @@
background-color: var(--negative-color-selected);
}

.typeSecondaryWarning {
background-color: var(--warning-color-selected);
}

.animate {
transition: width var(--motion-productive-medium) var(--motion-timing-transition);
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ export enum ProgressBarStyle {
SECONDARY = "secondary",
POSITIVE = "positive",
NEGATIVE = "negative",
WARNING = "warning",
NONE = "none"
}

0 comments on commit aacfe1f

Please sign in to comment.