Commit 6eb69971 authored by Mike Grabowski's avatar Mike Grabowski Committed by GitHub

chore: fix horizontal overflow (#5279)

chore: fix overflow horizontal
parent 1d6662df
...@@ -32,7 +32,7 @@ const BannerBackground = styled(AbsoluteFill)<{ backgroundImage: string }>` ...@@ -32,7 +32,7 @@ const BannerBackground = styled(AbsoluteFill)<{ backgroundImage: string }>`
background-image: ${(props) => `url(${props.backgroundImage})`}; background-image: ${(props) => `url(${props.backgroundImage})`};
filter: blur(62px); filter: blur(62px);
opacity: ${({ theme }) => (theme.darkMode ? 0.3 : 0.2)}; opacity: ${({ theme }) => (theme.darkMode ? 0.3 : 0.2)};
transform: scale(1.1); transform: scaleY(1.1);
` `
const PlainBackground = styled(AbsoluteFill)` const PlainBackground = styled(AbsoluteFill)`
......
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