mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #824 from omnivore-app/fix/box-height
This commit is contained in:
commit
bbae99dd7e
2 changed files with 3 additions and 3 deletions
|
|
@ -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,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue