From 948dd32ef0982e18d6037dd0a8517f2104a83244 Mon Sep 17 00:00:00 2001 From: Douglas Christopher Wilson Date: Thu, 25 Apr 2019 22:30:45 -0400 Subject: [PATCH] Hide search box from mobile --- css/search.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/css/search.css b/css/search.css index ceb1ad82..cb60915c 100644 --- a/css/search.css +++ b/css/search.css @@ -14,3 +14,9 @@ .algolia-autocomplete #q { display: initial } + +@media all and (max-width: 899px) { + .algolia-autocomplete { + display: none !important; + } +}