diff options
author | Eric Bailey <git@esb.lol> | 2024-12-07 11:09:46 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-07 17:09:46 +0000 |
commit | 296aab4736e09097ec07ff0b9e5f2ac78e342047 (patch) | |
tree | d10975f619b15d185c61d754d509ce7f9e879830 /src | |
parent | 5297973f682d31b1f0cd312a4fa2ab42c8103c1e (diff) | |
download | voidsky-296aab4736e09097ec07ff0b9e5f2ac78e342047.tar.zst |
Fix squashed content on mod screens (#7004)
* Fix squashed content on mod screens * Fix lint
Diffstat (limited to 'src')
-rw-r--r-- | src/view/screens/Feeds.tsx | 1 | ||||
-rw-r--r-- | src/view/screens/ModerationBlockedAccounts.tsx | 3 | ||||
-rw-r--r-- | src/view/screens/ModerationMutedAccounts.tsx | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/src/view/screens/Feeds.tsx b/src/view/screens/Feeds.tsx index ec48b9c08..520400fd1 100644 --- a/src/view/screens/Feeds.tsx +++ b/src/view/screens/Feeds.tsx @@ -487,6 +487,7 @@ export function FeedsScreen(_props: Props) { return null }, [ + _, pal.border, pal.textLight, query, diff --git a/src/view/screens/ModerationBlockedAccounts.tsx b/src/view/screens/ModerationBlockedAccounts.tsx index 9b0f54984..c2f87c086 100644 --- a/src/view/screens/ModerationBlockedAccounts.tsx +++ b/src/view/screens/ModerationBlockedAccounts.tsx @@ -23,6 +23,7 @@ import {ProfileCard} from '#/view/com/profile/ProfileCard' import {ErrorScreen} from '#/view/com/util/error/ErrorScreen' import {Text} from '#/view/com/util/text/Text' import {ViewHeader} from '#/view/com/util/ViewHeader' +import {atoms as a} from '#/alf' import * as Layout from '#/components/Layout' type Props = NativeStackScreenProps< @@ -96,7 +97,7 @@ export function ModerationBlockedAccounts({}: Props) { ) return ( <Layout.Screen testID="blockedAccountsScreen"> - <Layout.Center> + <Layout.Center style={[a.flex_1, {paddingBottom: 100}]}> <ViewHeader title={_(msg`Blocked Accounts`)} showOnDesktop /> <Text type="sm" diff --git a/src/view/screens/ModerationMutedAccounts.tsx b/src/view/screens/ModerationMutedAccounts.tsx index 6a8c6c3e6..059985631 100644 --- a/src/view/screens/ModerationMutedAccounts.tsx +++ b/src/view/screens/ModerationMutedAccounts.tsx @@ -23,6 +23,7 @@ import {ProfileCard} from '#/view/com/profile/ProfileCard' import {ErrorScreen} from '#/view/com/util/error/ErrorScreen' import {Text} from '#/view/com/util/text/Text' import {ViewHeader} from '#/view/com/util/ViewHeader' +import {atoms as a} from '#/alf' import * as Layout from '#/components/Layout' type Props = NativeStackScreenProps< @@ -97,7 +98,7 @@ export function ModerationMutedAccounts({}: Props) { return ( <Layout.Screen testID="mutedAccountsScreen"> <ViewHeader title={_(msg`Muted Accounts`)} showOnDesktop /> - <Layout.Center> + <Layout.Center style={[a.flex_1, {paddingBottom: 100}]}> <Text type="sm" style={[ |