Skip to content

Commit

Permalink
fix(toast): error progress bar lost visibility
Browse files Browse the repository at this point in the history
The toast error progress bar is not visibile because the build
process omitted to compile for error variation of toast progress
and ended up showing the same color as error background of toast
which makes the progress bar not visible.
  • Loading branch information
ko2in authored Jul 23, 2020
1 parent ae0b664 commit 656dcfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/definitions/modules/toast.less
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
&.success .bar.bar.bar {
background: @toastSuccessProgressColor;
}
.error .bar.bar.bar {
&.error .bar.bar.bar {
background: @toastErrorProgressColor;
}
&.neutral .bar.bar.bar {
Expand Down

0 comments on commit 656dcfc

Please sign in to comment.