diff --git a/src/FilterLists.Web/ClientApp/components/Home.tsx b/src/FilterLists.Web/ClientApp/components/Home.tsx index f4278730d..9990c7ec8 100644 --- a/src/FilterLists.Web/ClientApp/components/Home.tsx +++ b/src/FilterLists.Web/ClientApp/components/Home.tsx @@ -67,7 +67,9 @@ export class Home extends React.Component, 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) {