Fix minor list layout bugs (#1810)

* Fix accidental border on mobile

* Fix lists list to take full screen
This commit is contained in:
dan 2023-11-06 17:15:01 +00:00 committed by GitHub
parent 95b5e642dc
commit 4c00fc576d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 3 deletions

View file

@ -17,7 +17,7 @@ import {Text} from '../util/text/Text'
import {ListsListModel} from 'state/models/lists/lists-list'
import {useAnalytics} from 'lib/analytics/analytics'
import {usePalette} from 'lib/hooks/usePalette'
import {FlatList} from '../util/Views.web'
import {FlatList} from '../util/Views'
import {s} from 'lib/styles'
import {logger} from '#/logger'

View file

@ -85,7 +85,7 @@ export const ListsScreen = withAuthRequired(
</Button>
</View>
</SimpleViewHeader>
<ListsList listsList={listsLists} />
<ListsList listsList={listsLists} style={s.flexGrow1} />
</View>
)
}),

View file

@ -85,7 +85,7 @@ export const ModerationModlistsScreen = withAuthRequired(
</Button>
</View>
</SimpleViewHeader>
<ListsList listsList={mutelists} />
<ListsList listsList={mutelists} style={s.flexGrow1} />
</View>
)
}),