From 64d94c7235be7fe96daa38ebf17eb3ecd9905312 Mon Sep 17 00:00:00 2001 From: Steven Hicks Date: Wed, 20 Feb 2019 16:01:56 -0600 Subject: [PATCH] Style force integration with reaction/search-bar --- .../react/stitch_components/SearchBar.tsx | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/desktop/components/react/stitch_components/SearchBar.tsx b/src/desktop/components/react/stitch_components/SearchBar.tsx index d3161280eaf..5fe7350fa83 100644 --- a/src/desktop/components/react/stitch_components/SearchBar.tsx +++ b/src/desktop/components/react/stitch_components/SearchBar.tsx @@ -1,16 +1,14 @@ import React from "react" import { Box } from "@artsy/palette" import { SearchBarQueryRenderer } from "reaction/Components/Search/SearchBar" +import styled from "styled-components" + +const SearchBarContainer = styled(Box)` + z-index: 100; +` export const SearchBar = () => ( - + - + )