diff --git a/.changelog/554.bugfix.md b/.changelog/554.bugfix.md new file mode 100644 index 000000000..e5da2d89d --- /dev/null +++ b/.changelog/554.bugfix.md @@ -0,0 +1 @@ +Prevent showing horizontal scrollbar on home page diff --git a/src/app/pages/HomePage/index.tsx b/src/app/pages/HomePage/index.tsx index 4e9e10bcc..7eec035ed 100644 --- a/src/app/pages/HomePage/index.tsx +++ b/src/app/pages/HomePage/index.tsx @@ -30,6 +30,7 @@ const HomepageLayout = styled(Box)(({ theme }) => ({ display: 'flex', flexDirection: 'column', width: '100vw', + maxWidth: '100%', height: 'fill-available', minHeight: '100vh', backgroundColor: COLORS.brandDark,