Commit 830500dc authored by Vignesh Mohankumar's avatar Vignesh Mohankumar Committed by GitHub

fix: use background-size cover for about banner (#5641)

parent 5af32592
......@@ -33,7 +33,7 @@ const PageBackground = styled.div<{ isDarkMode: boolean }>`
background: ${({ isDarkMode }) => (isDarkMode ? `url(${backgroundImgSrcDark})` : `url(${backgroundImgSrcLight})`)};
-webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
background-size: auto 100vh;
background-size: cover;
background-repeat: no-repeat;
`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment