Skip to content

Commit

Permalink
Team planner indicator in shop is now animated to be more visible (#2648
Browse files Browse the repository at this point in the history
)
  • Loading branch information
sylvainpolletvillard authored Jan 5, 2025
1 parent 36c1bef commit d7481cd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/public/dist/client/changelog/patch-5.9.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@

- Added item components recipe on craftable items tooltip
- New stat boosts animations
- Team planner indicator in shop is now animated to be more visible

# Bugfix

Expand Down
10 changes: 10 additions & 0 deletions app/public/src/pages/component/game/game-pokemon-portrait.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,16 @@
.game-pokemon-portrait-planned-icon {
width: 1.4vw;
height: 1.4vw;
animation: rotateY 1s linear infinite;
}

@keyframes rotateY {
0% {
transform: rotateY(0deg);
}
100% {
transform: rotateY(360deg);
}
}

.game-pokemon-portrait-duo-part {
Expand Down

0 comments on commit d7481cd

Please sign in to comment.