This commit is contained in:
Prasanta Kumar Dutta 2023-11-07 19:41:04 +05:30
parent c99197e68f
commit 98db3aeadd

View file

@ -26,8 +26,14 @@
<style lang="scss"> <style lang="scss">
.step-background { .step-background {
opacity: 0;
will-change: opacity;
transition: 0.35s opacity ease; transition: 0.35s opacity ease;
&.visible {
opacity: 1;
}
&.invisible { &.invisible {
opacity: 0; opacity: 0;
} }