Skip to content

Commit

Permalink
💄 Highlight last step after 2s
Browse files Browse the repository at this point in the history
  • Loading branch information
srod committed Oct 11, 2024
1 parent 241c1b0 commit f3a5771
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wallet/public/locales/fr/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"recover": "Récupérer le portefeuille à partir du fichier",
"redirect": "Vous serez redirigé vers {{ productName }} dans quelques secondes.",
"redirectNow": "Rediriger maintenant",
"subTitle": "pour recevoir immédiatement vos gains de<pLink> {{productName}}</pLink> .",
"subTitle": "pour recevoir immédiatement vos gains de <pLink>{{productName}}</pLink> .",
"title": "Créez votre portefeuille"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,25 @@
}
}

.modalListener__stepItem:last-child.modalListener__stepItem--active {
animation: highlightLastStep 2s forwards;

.modalListener__stepNumberInnerIcon {
animation: highlightLastStep 2s forwards;
}
}

@keyframes highlightLastStep {
60% {
color: #818c9c;
border-color: #818c9c;
}
100% {
color: #0171ec;
border-color: #0171ec;
}
}

.modalListener__help {
margin-top: 20px;
font-size: 12px;
Expand Down

0 comments on commit f3a5771

Please sign in to comment.