Add extra spacing at bottom of mobile highlight list

This commit is contained in:
Jackson Harper
2023-03-31 21:04:18 +08:00
parent a6bda62a91
commit 2d4723b2cd

View File

@ -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' }} />
</>
)
}