unify margin between different steps

This commit is contained in:
Samuel Newman
2024-09-05 14:16:34 +01:00
parent 2f4b0dcdbe
commit 8f35262b42
3 changed files with 2 additions and 2 deletions
+1
View File
@@ -770,6 +770,7 @@ export const ComposePost = observer(function ComposePost({
) : null} ) : null}
{(videoUploadState.asset || videoUploadState.video) && ( {(videoUploadState.asset || videoUploadState.video) && (
<Animated.View <Animated.View
style={[a.w_full, a.mt_xs]}
entering={native(ZoomIn)} entering={native(ZoomIn)}
exiting={native(ZoomOut)}> exiting={native(ZoomOut)}>
{videoUploadState.asset && {videoUploadState.asset &&
@@ -34,7 +34,7 @@ export function SubtitleDialogBtn(props: Props) {
const {_} = useLingui() const {_} = useLingui()
return ( return (
<View style={[a.flex_row, a.mt_xs]}> <View style={[a.flex_row, a.my_xs]}>
<Button <Button
label={isWeb ? _('Captions & alt text') : _('Alt text')} label={isWeb ? _('Captions & alt text') : _('Alt text')}
accessibilityHint={ accessibilityHint={
@@ -35,7 +35,6 @@ export function VideoTranscodeProgress({
<View <View
style={[ style={[
a.w_full, a.w_full,
a.mt_md,
t.atoms.bg_contrast_50, t.atoms.bg_contrast_50,
a.rounded_md, a.rounded_md,
a.overflow_hidden, a.overflow_hidden,