Merge pull request #824 from omnivore-app/fix/box-height

This commit is contained in:
Jackson Harper 2022-06-20 13:02:27 -07:00 committed by GitHub
commit bbae99dd7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -62,8 +62,8 @@ export function PrimaryLayout(props: PrimaryLayoutProps): JSX.Element {
<PageMetaData {...props.pageMetaDataProps} />
) : null}
<Box css={{
minHeight: '100vh',
minWidth: '100vw',
width: '100vw',
height: '100vh',
bg: 'transparent',
'@smDown': {
bg: '$grayBase',

View file

@ -65,7 +65,7 @@ export function HomeFeedContainer(): JSX.Element {
const { viewerData } = useGetViewerQuery()
const router = useRouter()
const defaultQuery = {
limit: 5,
limit: 10,
sortDescending: true,
searchQuery: undefined,
}