Allow players to damage and stun ennemy champions
release-tag / release-image (push) Successful in 4m19s

This commit is contained in:
2024-05-09 23:03:22 +02:00
parent a1e0386331
commit 3654167883
2 changed files with 6 additions and 5 deletions
+5 -4
View File
@@ -68,10 +68,6 @@ watch(
cursor: pointer cursor: pointer
} }
.card.active:hover #contextMenuButtons {
transform: translateY(100%);
}
.card_image { .card_image {
max-height: 250px; max-height: 250px;
transition: all .125s cubic-bezier(0.075, 0.82, 0.165, 1); transition: all .125s cubic-bezier(0.075, 0.82, 0.165, 1);
@@ -105,6 +101,11 @@ watch(
transform: translateY(0); transform: translateY(0);
transition: 0.1s transform cubic-bezier(0.075, 0.82, 0.165, 1); transition: 0.1s transform cubic-bezier(0.075, 0.82, 0.165, 1);
} }
.card.active:hover #contextMenuButtons {
transform: translateY(100%);
}
</style> </style>
<style> <style>
#contextMenuButtons>* { #contextMenuButtons>* {
+1 -1
View File
@@ -141,7 +141,7 @@ const props = defineProps<Props>()
margin: auto 0; margin: auto 0;
} }
.view #contextMenuButtons { .view #contextMenuButtons button:not(.enemy_action) {
display: none display: none
} }
</style> </style>