Skip to content

Commit

Permalink
Fix bug with background image obscuring search controls (#1286)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonkafton authored Jul 18, 2024
1 parent 4a4ca34 commit abcc859
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontends/mit-open/src/pages/SearchPage/SearchPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ const ColoredHeader = styled.div`
height: 75px;
}
position: relative;
z-index: -1;
display: flex;
align-items: center;
background: #eb01a5;
Expand All @@ -40,7 +42,7 @@ const BackgroundImage = styled.img`
position: absolute;
float: left;
width: 35%;
top: 60px;
top: 0;
left: 0;
${({ theme }) => theme.breakpoints.down("md")} {
display: none;
Expand Down

0 comments on commit abcc859

Please sign in to comment.