79348107

Date: 2025-01-11 12:54:51
Score: 1
Natty:
Report link

You can do it by updating this 2 transform in CSS. You can also add transform-origin if needed

.dropdown-menu {
    transform: scaleY(0) translateX(-25%);
  }
  
.dropdown-menu.show {
    transform: scaleY(1) translateX(-25%);
  }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bhargav Tibadiya