Skip to content

Commit

Permalink
[www] fixup 0fb587e - links were still clickable
Browse files Browse the repository at this point in the history
Apparently animating display:none is a bad idea?
  • Loading branch information
michaelkirk committed Jan 19, 2024
1 parent 2e390f8 commit 06b7747
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions services/frontend/www-app/src/components/BaseMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,13 @@
@keyframes hideElement {
0% {
opacity: 1;
visibility: visible;
}
100% {
opacity: 0;
display: none;
visibility: hidden;
margin-top: -20px;
position: relative;
top: 20px;
}
}
Expand Down

0 comments on commit 06b7747

Please sign in to comment.