From 7b5101e30234bb12315c41098a5199abd15859b7 Mon Sep 17 00:00:00 2001
From: Paul Slaughter <pslaughter@gitlab.com>
Date: Tue, 25 May 2021 22:34:42 -0500
Subject: [PATCH] Add explicit display block to .search form

- This was removed from application.scss in
  [this MR][1], but the startup CSS still had
  the explicit display: block

[1]: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/61753
---
 app/assets/stylesheets/pages/search.scss | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app/assets/stylesheets/pages/search.scss b/app/assets/stylesheets/pages/search.scss
index f83ba89daae37..2ec2df4b817b2 100644
--- a/app/assets/stylesheets/pages/search.scss
+++ b/app/assets/stylesheets/pages/search.scss
@@ -45,6 +45,7 @@ input[type='checkbox']:hover {
   margin: 0 8px;
 
   form {
+    display: block;
     margin: 0;
     padding: 4px;
     width: $search-input-width;
-- 
GitLab