[bugfix/Chore] Fix warning progress bar color that was not applied.

This commit is contained in:
Sakamoto Shiina
2025-06-05 22:04:40 +09:00
parent bcef981955
commit ad0e87f5a1
5 changed files with 18 additions and 23 deletions

View File

@@ -3,7 +3,7 @@
--toastify-color-dark: var(--dark_950_color);
--toastify-color-info: var(--sent_400_color);
--toastify-color-success: var(--primary_400_color);
--toastify-color-warning: var(--waring_bc_color);
--toastify-color-warning: var(--warning_bc_color);
--toastify-color-error: var(--error_bc_color);
--toastify-color-transparent: rgba(255, 255, 255, 0.7);
@@ -87,6 +87,9 @@
gap: 0.6rem;
}
.Toastify__progress-bar--wrp {
height: 0.4rem;
}
.Toastify__progress-bar--success {
background: var(--success_bc_color);
}