mirror of
https://github.com/prymitive/karma
synced 2026-05-05 03:16:51 +00:00
fix(ui): reverse upgrade toast progress
This commit is contained in:
committed by
Łukasz Mierzwa
parent
260125782e
commit
4db3e0a0ab
@@ -58,7 +58,7 @@ const UpgradeToastMessage: FC<{
|
||||
}`}
|
||||
onAnimationEnd={alertStore.info.setUpgradeNeeded}
|
||||
role="progressbar"
|
||||
style={{ width: 0 }}
|
||||
style={{ width: 100 }}
|
||||
></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -71,7 +71,7 @@ exports[`<AppToasts /> renders UpgradeToastMessage when alertStore.info.upgradeR
|
||||
>
|
||||
<div class=\\"progress-bar bg-white toast-upgrade-progressbar\\"
|
||||
role=\\"progressbar\\"
|
||||
style=\\"width: 0px;\\"
|
||||
style=\\"width: 100px;\\"
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -54,7 +54,7 @@ exports[`<UpgradeToastMessage /> matches snapshot 1`] = `
|
||||
>
|
||||
<div class=\\"progress-bar bg-white toast-upgrade-progressbar\\"
|
||||
role=\\"progressbar\\"
|
||||
style=\\"width: 0px;\\"
|
||||
style=\\"width: 100px;\\"
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -32,9 +32,9 @@
|
||||
|
||||
@keyframes upgradeProgress {
|
||||
0% {
|
||||
width: 0%;
|
||||
}
|
||||
100% {
|
||||
width: 100%;
|
||||
}
|
||||
100% {
|
||||
width: 0%;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user