Fix border on some listing screens (#5115)

* Fix border on PostQuotes, add debug atom

* Add util_screen_outer, apply to h_full_vh here needed
This commit is contained in:
Eric Bailey 2024-09-03 13:50:48 -05:00 committed by GitHub
parent 5c2e9f09bf
commit ddda612c11
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 24 additions and 6 deletions

View file

@ -27,7 +27,7 @@ export const PostLikedByScreen = ({route}: Props) => {
)
return (
<CenteredView style={a.h_full_vh} sideBorders={true}>
<CenteredView style={a.util_screen_outer} sideBorders={true}>
<ListHeaderDesktop title={_(msg`Liked By`)} />
<ViewHeader title={_(msg`Liked By`)} showBorder={!isWeb} />
<PostLikedByComponent uri={uri} />

View file

@ -27,7 +27,7 @@ export const PostQuotesScreen = ({route}: Props) => {
)
return (
<CenteredView style={a.h_full_vh} sideBorders={true}>
<CenteredView style={a.util_screen_outer} sideBorders={true}>
<ListHeaderDesktop title={_(msg`Quotes`)} />
<ViewHeader title={_(msg`Quotes`)} showBorder={!isWeb} />
<PostQuotesComponent uri={uri} />

View file

@ -27,7 +27,7 @@ export const PostRepostedByScreen = ({route}: Props) => {
)
return (
<CenteredView style={a.h_full_vh} sideBorders={true}>
<CenteredView style={a.util_screen_outer} sideBorders={true}>
<ListHeaderDesktop title={_(msg`Reposted By`)} />
<ViewHeader title={_(msg`Reposted By`)} showBorder={!isWeb} />
<PostRepostedByComponent uri={uri} />