mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Add extra spacing at bottom of mobile highlight list
This commit is contained in:
parent
a6bda62a91
commit
2d4723b2cd
1 changed files with 3 additions and 3 deletions
|
|
@ -33,9 +33,8 @@ type HighlightItemsLayoutProps = {
|
|||
export function HighlightItemsLayout(
|
||||
props: HighlightItemsLayoutProps
|
||||
): JSX.Element {
|
||||
const [currentItem, setCurrentItem] = useState<LibraryItem | undefined>(
|
||||
undefined
|
||||
)
|
||||
const [currentItem, setCurrentItem] =
|
||||
useState<LibraryItem | undefined>(undefined)
|
||||
|
||||
const listReducer = (
|
||||
state: LibraryItem[],
|
||||
|
|
@ -248,6 +247,7 @@ function LibraryItemsList(props: LibraryItemsListProps): JSX.Element {
|
|||
)}
|
||||
</Box>
|
||||
))}
|
||||
<Box css={{ height: '240px' }} />
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue