diff --git a/app/styles/core/animation.scss b/app/styles/core/animation.scss index 978ec66b..1a2fc285 100644 --- a/app/styles/core/animation.scss +++ b/app/styles/core/animation.scss @@ -44,3 +44,17 @@ flex: 1; } } + +// Drop Down element animations +@keyframes dropdownFade { + 0% { + opacity: 0; + transform: translateY(-.25rem); + } + 60% { + opacity: 1; + } + 100% { + transform: translateY(0); + } +} diff --git a/app/styles/modules/common/navbar.scss b/app/styles/modules/common/navbar.scss index f2c8e80b..e892fa40 100644 --- a/app/styles/modules/common/navbar.scss +++ b/app/styles/modules/common/navbar.scss @@ -142,18 +142,3 @@ } } } - -// Generated with Bounce.js. Edit at http://goo.gl/yZlDYR - -@keyframes dropdownFade { - 0% { - opacity: 0; - transform: translateY(-.25rem); - } - 60% { - opacity: 1; - } - 100% { - transform: translateY(0); - } -}