Skip to content

Commit

Permalink
Adjust landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
zeekay committed Feb 7, 2023
1 parent b04f577 commit 858a290
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/pages/Landing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const Gradient = styled.div<{ isDarkMode: boolean }>`
min-height: 550px;
background: ${({ isDarkMode }) =>
isDarkMode
? 'linear-gradient(rgba(8, 8, 8, 0) 0%, rgb(11 11 11 / 100%) 40%)'
? 'linear-gradient(rgba(8, 8, 8, 0) 0%, rgb(11 11 11 / 100%) 50%)'
: 'linear-gradient(rgba(255, 255, 255, 0) 0%, rgb(255 255 255 /100%) 40%)'};
z-index: ${Z_INDEX.under_dropdown};
pointer-events: none;
Expand All @@ -74,14 +74,13 @@ const GlowContainer = styled.div`

const Glow = styled.div`
position: absolute;
top: 68px;
bottom: 0;
background: radial-gradient(72.04% 72.04% at 50% 3.99%, #333 0%, rgba(11, 11, 11, 0) 100%);
filter: blur(72px);
border-radius: 24px;
max-width: 480px;
width: 100%;
height: 100%;
top: 11vh;
`

const ContentContainer = styled.div<{ isDarkMode: boolean }>`
Expand All @@ -96,7 +95,7 @@ const ContentContainer = styled.div<{ isDarkMode: boolean }>`
min-height: 500px;
z-index: ${Z_INDEX.under_dropdown};
transition: ${({ theme }) => `${theme.transition.duration.medium} ${theme.transition.timing.ease} opacity`};
height: ${({ theme }) => `calc(100vh - ${theme.navHeight + theme.mobileBottomBarHeight}px)`};
height: 66vh;
pointer-events: none;
* {
pointer-events: auto;
Expand Down

1 comment on commit 858a290

@vercel
Copy link

@vercel vercel bot commented on 858a290 Feb 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.