From 248454e50a3a60f15d62e710c10975e7eb310460 Mon Sep 17 00:00:00 2001 From: Chris Lawton <chris.lawton@torchbox.com> Date: Thu, 11 Jan 2018 13:04:33 +0000 Subject: [PATCH] updating mobile menu timing function to use global transition variable rather than cubic-bezier --- opentech/static_src/src/sass/layout/_header.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentech/static_src/src/sass/layout/_header.scss b/opentech/static_src/src/sass/layout/_header.scss index 3815ee28c..af9c6bb90 100644 --- a/opentech/static_src/src/sass/layout/_header.scss +++ b/opentech/static_src/src/sass/layout/_header.scss @@ -72,7 +72,7 @@ background: $color--dark-grey; opacity: 0; transform: translate3d(0, -100%, 0); - transition: opacity, transform, 250ms cubic-bezier(0.65, 0.05, 0.36, 1); + transition: opacity, transform, $transition; &.is-visible { opacity: 1; -- GitLab