Revert "Make dropdown menus actually dropdown"

This reverts commit a2046be0ee.
This commit is contained in:
Sean Yesmunt 2021-01-29 11:50:19 -05:00
parent 5314100714
commit f28707504a

View file

@ -70,11 +70,11 @@
@keyframes menu-animate-in { @keyframes menu-animate-in {
0% { 0% {
transform: translateY(-80px); transform: scaleY(0);
opacity: 0; opacity: 0;
} }
100% { 100% {
transform: translateY(0); transform: scaleY(1);
opacity: 1; opacity: 1;
} }
} }