Skip to content
Snippets Groups Projects
Unverified Commit a99a5f76 authored by Kyle Doherty's avatar Kyle Doherty Committed by GitHub
Browse files

tweak search result and active color (#21657)

parent 542024ba
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,8 @@ export const SearchInputContainer = styled.div<{ isActive: boolean }>`
align-items: center;
position: relative;
background-color: ${color("bg-light")};
background-color: ${props =>
props.isActive ? color("bg-medium") : color("bg-light")};
border: 1px solid ${color("border")};
overflow: hidden;
......@@ -130,7 +131,7 @@ export const SearchResultsFloatingContainer = styled.div`
}
${breakpointMinSmall} {
top: 60px;
top: 42px;
}
`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment