Allow primary layout to use full screen dimensions
Also set the library fetch limit back to 10.
This commit is contained in:
@ -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',
|
||||
|
||||
@ -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,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user