Skip to content

Commit 1a00b33

Browse files
authored
Merge pull request #344 from DialmasterOrg/233-add-pagination-and-search-to-your-channels-channel-manager-page
feat: Improve UI and add pagination/sort/filtering to Your Channels
2 parents 1a30714 + ed2406c commit 1a00b33

38 files changed

+6311
-1750
lines changed

client/src/App.tsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -679,6 +679,19 @@ function AppContent() {
679679
style={{
680680
paddingTop: isMobile ? '100px' : '32px',
681681
width: '100%',
682+
...(location.pathname === '/channels'
683+
? (isMobile
684+
? {
685+
height: '100vh',
686+
maxHeight: 'calc(100vh - 16px)',
687+
}
688+
: {
689+
height: 'calc(100vh - 132px)',
690+
maxHeight: 'calc(100vh - 132px)',
691+
display: 'flex',
692+
flexDirection: 'column',
693+
})
694+
: {}),
682695
}}
683696
>
684697
{checkingSetup ? (

0 commit comments

Comments
 (0)