Skip to content

Commit 656dcfc

Browse files
authored
fix(toast): error progress bar lost visibility
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.
1 parent ae0b664 commit 656dcfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/definitions/modules/toast.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
&.success .bar.bar.bar {
111111
background: @toastSuccessProgressColor;
112112
}
113-
.error .bar.bar.bar {
113+
&.error .bar.bar.bar {
114114
background: @toastErrorProgressColor;
115115
}
116116
&.neutral .bar.bar.bar {

0 commit comments

Comments
 (0)