fix: set the min width to allow all content to load with a scroll (#24827)

This commit is contained in:
Dipyaman Biswas 2023-06-28 15:05:30 +05:30 committed by GitHub
parent 38ab322479
commit bdcfdfc22a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,8 @@ const LandingPageWrapper = styled.div`
justify-content: center;
align-items: flex-start;
margin: 0 auto;
overflow-y: auto;
overflow: auto;
min-width: 800px;
`;
const LandingPageContent = styled.div`