-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Style force integration with reaction/search-bar
- Loading branch information
1 parent
1f81bb8
commit 64d94c7
Showing
1 changed file
with
7 additions
and
9 deletions.
There are no files selected for viewing
16 changes: 7 additions & 9 deletions
16
src/desktop/components/react/stitch_components/SearchBar.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 = () => ( | ||
<Box | ||
style={{ | ||
position: "fixed", | ||
zIndex: 100, | ||
backgroundColor: "white", | ||
top: "2px", | ||
}} | ||
> | ||
<SearchBarContainer pt={1} pb={0.5}> | ||
<SearchBarQueryRenderer /> | ||
</Box> | ||
</SearchBarContainer> | ||
) |