Skip to content

Commit

Permalink
Merge pull request #743 from centrifuge/april-2024-hotfix
Browse files Browse the repository at this point in the history
Fixes header z-index issue
  • Loading branch information
devin-black committed Apr 18, 2024
2 parents 64efeca + 0d435b5 commit 1e7f918
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/components/header/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export const Root = styled(Box)<{ isHidden: boolean }>`
background-color: ${({ theme }) => theme.colors.backgroundPage};
transition: transform 0.25s;
transform: ${({ isHidden }) => `translateY(${isHidden ? -100 : 0}%)`};
z-index: 2;
`

export const LogoLink = styled(Link)`
Expand Down
1 change: 0 additions & 1 deletion src/components/hero-main/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export const Root = styled(Box)`

export const Inner = styled(Container)`
position: relative;
z-index: 2;
@media screen and (min-width: ${({ theme }) => theme.breakpoints['S']}) {
display: grid;
Expand Down

0 comments on commit 1e7f918

Please sign in to comment.