about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/screens/StarterPack/Wizard/index.tsx6
-rw-r--r--src/view/com/composer/ExternalEmbedRemoveBtn.tsx2
-rw-r--r--src/view/com/composer/GifAltText.tsx2
3 files changed, 6 insertions, 4 deletions
diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx
index f8d503274..9a90a1f51 100644
--- a/src/screens/StarterPack/Wizard/index.tsx
+++ b/src/screens/StarterPack/Wizard/index.tsx
@@ -49,7 +49,7 @@ import {useWizardState, WizardStep} from '#/screens/StarterPack/Wizard/State'
 import {StepDetails} from '#/screens/StarterPack/Wizard/StepDetails'
 import {StepFeeds} from '#/screens/StarterPack/Wizard/StepFeeds'
 import {StepProfiles} from '#/screens/StarterPack/Wizard/StepProfiles'
-import {atoms as a, useTheme} from '#/alf'
+import {atoms as a, useTheme, web} from '#/alf'
 import {Button, ButtonText} from '#/components/Button'
 import {useDialogControl} from '#/components/Dialog'
 import * as Layout from '#/components/Layout'
@@ -121,7 +121,9 @@ export function Wizard({
   }
 
   return (
-    <Layout.Screen>
+    <Layout.Screen
+      testID="starterPackWizardScreen"
+      style={web([{minHeight: 0}, a.flex_1])}>
       <Provider starterPack={starterPack} listItems={listItems}>
         <WizardInner
           currentStarterPack={starterPack}
diff --git a/src/view/com/composer/ExternalEmbedRemoveBtn.tsx b/src/view/com/composer/ExternalEmbedRemoveBtn.tsx
index 7df4b7ae4..3ef9dad47 100644
--- a/src/view/com/composer/ExternalEmbedRemoveBtn.tsx
+++ b/src/view/com/composer/ExternalEmbedRemoveBtn.tsx
@@ -11,7 +11,7 @@ export function ExternalEmbedRemoveBtn({onRemove}: {onRemove: () => void}) {
   const {_} = useLingui()
 
   return (
-    <View style={[a.absolute, a.pt_sm, a.pr_sm, a.z_50, {top: 0, right: 0}]}>
+    <View style={[a.absolute, {top: 8, right: 8}, a.z_50]}>
       <Button
         label={_(msg`Remove attachment`)}
         onPress={onRemove}
diff --git a/src/view/com/composer/GifAltText.tsx b/src/view/com/composer/GifAltText.tsx
index 143d7b826..ef5f8a3a5 100644
--- a/src/view/com/composer/GifAltText.tsx
+++ b/src/view/com/composer/GifAltText.tsx
@@ -79,7 +79,7 @@ export function GifAltTextDialogLoaded({
         onPress={control.open}
         style={[
           a.absolute,
-          {top: 20, left: 12},
+          {top: 8, left: 8},
           {borderRadius: 6},
           a.pl_xs,
           a.pr_sm,