tweak page vertical sizing

This commit is contained in:
Collin M. Barrett 2019-09-02 19:57:41 -05:00
parent 7e2de8b469
commit ec8a4cae4d
2 changed files with 2 additions and 2 deletions

View file

@ -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 />

View file

@ -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
});