mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
parent
2863cfc862
commit
5acb16d682
1 changed files with 3 additions and 1 deletions
|
|
@ -67,7 +67,9 @@ export class Home extends React.Component<RouteComponentProps<{}>, IHomeState> {
|
|||
}
|
||||
|
||||
updatePageSize() {
|
||||
this.setState({ pageSize: (window.innerHeight - (361)) / 52 });
|
||||
this.setState({
|
||||
pageSize: window.innerHeight - (window.innerWidth > 540 ? 361 : 320) / 52
|
||||
});
|
||||
}
|
||||
|
||||
private static renderTagline(state: IHomeState) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue