fix(web): 🐛💄 reduce gap between content and footer on narrow viewports

This commit is contained in:
Collin M. Barrett 2020-09-21 07:30:01 -05:00
parent 0dea407593
commit c61c970448

View file

@ -19,7 +19,7 @@ export const useTablePageSizer = () => {
const calculateSize = () => ({
pageSize:
window.innerWidth < 576
? Math.floor((window.innerHeight - 220) / 37)
? Math.floor((window.innerHeight - 205) / 37)
: Math.floor((window.innerHeight - 150) / 49),
isNarrowWindow: window.innerWidth < 576 ? true : false,
isWideWindow: window.innerWidth > 1918 ? true : false,