Make dropdown menus actually dropdown

This commit is contained in:
DispatchCommit 2021-01-25 17:03:49 -08:00 committed by Sean Yesmunt
parent 8ea6ea87ad
commit a2046be0ee

View file

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