Skip to content

Commit

Permalink
fix(uui-button): 🚑 add back missing animation (#782)
Browse files Browse the repository at this point in the history
  • Loading branch information
julczka authored Apr 15, 2024
1 parent 13fd470 commit 5a1fea7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions packages/uui-button/lib/uui-button.element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,26 @@ export class UUIButtonElement extends UUIFormControlMixin(
a:not([href]):active {
animation: ${UUIHorizontalShakeAnimationValue};
}
/* ANIMATIONS */
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
#icon-check,
#icon-wrong {
display: grid;
Expand Down

0 comments on commit 5a1fea7

Please sign in to comment.