Fix web home feed sizing and related issues (close #432) (#475)

* Fix web home feed sizing (close #432)

* Fix lint

* Fix positioning of profile not found error

* Fix load latest on mobile

* Fix overflow issues on mobile web (visible in postthread)

* Fix bottom pad on mobile web

* Remove old comment
This commit is contained in:
Paul Frazee 2023-04-15 10:15:30 -07:00 committed by GitHub
parent a79dcd3d38
commit 91fadadb58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 109 additions and 24 deletions

View file

@ -8,6 +8,7 @@ import {Text} from '../text/Text'
import {colors} from 'lib/styles'
import {useTheme} from 'lib/ThemeContext'
import {usePalette} from 'lib/hooks/usePalette'
import {CenteredView} from '../Views'
export function ErrorScreen({
title,
@ -25,7 +26,7 @@ export function ErrorScreen({
const theme = useTheme()
const pal = usePalette('error')
return (
<View testID={testID} style={[styles.outer, pal.view]}>
<CenteredView testID={testID} style={[styles.outer, pal.view]}>
<View style={styles.errorIconContainer}>
<View
style={[
@ -72,7 +73,7 @@ export function ErrorScreen({
</TouchableOpacity>
</View>
)}
</View>
</CenteredView>
)
}