From 238c5238a5718a79b552e75ce7dcdd1c9b94ce52 Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Mon, 15 May 2017 12:26:30 -0700 Subject: [PATCH] fix(aio): remove searchbox shrink animation --- aio/src/styles/1-layouts/_top-menu.scss | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/aio/src/styles/1-layouts/_top-menu.scss b/aio/src/styles/1-layouts/_top-menu.scss index 64d04bc367..2c24074110 100644 --- a/aio/src/styles/1-layouts/_top-menu.scss +++ b/aio/src/styles/1-layouts/_top-menu.scss @@ -95,18 +95,10 @@ aio-search-box input { background-color: $offwhite; padding: 5px 10px; margin-left: 8px; - width:150px; + width: 200px; height: 40%; - @include bp(big) { - transition: width 0.4s ease-in-out; - &:focus { - width: 50%; - } - } + @media (max-width: 480px) { - transition: width 0.4s ease-in-out; - &:focus { - width: 50%; - } + width: 180px; } }