Allow primary layout to use full screen dimensions

Also set the library fetch limit back to 10.
This commit is contained in:
Jackson Harper
2022-06-20 12:31:27 -07:00
parent 456b7d7bbe
commit 376cc74aaa
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,
}