Skip to content

Commit

Permalink
frontend: swap filter buttons, reduce marker bounce
Browse files Browse the repository at this point in the history
  • Loading branch information
Synar committed Jun 29, 2024
1 parent 56765cd commit 51c0e57
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions frontend/components/viewer/FilterConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,17 @@
outlined
size="small"
class="m-1"
@click="resetFilteringCategories"
@click="selectAllFilteringCategories"
>
Réinitialiser
Tout sélectionner
</Button>
<Button
outlined
size="small"
class="m-1"
@click="selectAllFilteringCategories"
@click="resetFilteringCategories"
>
Tout sélectionner
Réinitialiser
</Button>
</div>
<div
Expand Down
2 changes: 1 addition & 1 deletion frontend/components/viewer/map/Marker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const handleClick = () => {
transform: translateY(0%);
}
100% {
transform: translateY(-50%);
transform: translateY(-40%);
}
}
</style>

0 comments on commit 51c0e57

Please sign in to comment.