mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix(web): 🐛💄 reduce gap between content and footer on narrow viewports
This commit is contained in:
parent
0dea407593
commit
c61c970448
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue