mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix(web): 🐛💄 give footer a bit more space on narrow viewports to prevent overlap
ref #1798
This commit is contained in:
parent
400320661f
commit
a0bfd9932d
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 - 215) / 43)
|
||||
? Math.floor((window.innerHeight - 220) / 43)
|
||||
: Math.floor((window.innerHeight - 150) / 57),
|
||||
isNarrowWindow: window.innerWidth < 576 ? true : false,
|
||||
isWideWindow: window.innerWidth > 1918 ? true : false,
|
||||
|
|
|
|||
Loading…
Reference in a new issue