mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
tweak page vertical sizing
This commit is contained in:
parent
7e2de8b469
commit
ec8a4cae4d
2 changed files with 2 additions and 2 deletions
|
|
@ -21,7 +21,7 @@ export const App: React.FC = () =>
|
|||
</Switch>
|
||||
</div>
|
||||
</Content>
|
||||
<Footer style={{ textAlign: 'center' }}>
|
||||
<Footer style={{ textAlign: 'center', padding: '6px 50px', background: '#fff' }}>
|
||||
<CopyrightAuthor />
|
||||
<Twitter />
|
||||
<Community />
|
||||
|
|
|
|||
|
|
@ -16,6 +16,6 @@ export const useTablePageSizer = () => {
|
|||
};
|
||||
|
||||
const calculateSize = () => ({
|
||||
pageSize: Math.floor((window.innerHeight - 211.5) / 56),
|
||||
pageSize: Math.floor((window.innerHeight - 208) / 57),
|
||||
isNarrowWindow: window.innerWidth < 576 ? true : false
|
||||
});
|
||||
Loading…
Reference in a new issue