use same math on mobile for page size

closes #329
This commit is contained in:
Collin M. Barrett 2018-08-11 10:05:30 -05:00
parent 8f30b4edb9
commit e1db975f7a

View file

@ -68,7 +68,7 @@ export class Home extends React.Component<RouteComponentProps<{}>, IHomeState> {
updatePageSize() {
this.setState({
pageSize: Math.floor((window.innerHeight - (window.innerWidth > 540 ? 361 : 320)) / 52)
pageSize: Math.floor((window.innerHeight - 361) / 52)
});
}