Spot the bug in the menu animation

from CSS animations
CSS Animations Level 1 intermediate 4 min 2 issues to find

Find the problems in this generated menu animation.

CSS
.menu {
  opacity: 0;
  transform: translateY(-8px);
  transition: all 180ms ease;
}

.menu.open {
  opacity: 1;
  transform: translateY(0);
}
Open in playground
Report an error