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/view/screens/ModerationBlockedAccounts.tsx | |
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/view/screens/ModerationBlockedAccounts.tsx')
-rw-r--r-- | src/view/screens/ModerationBlockedAccounts.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
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" |