diff --git a/packages/web/components/elements/MobileInstallHelp.tsx b/packages/web/components/elements/MobileInstallHelp.tsx index a9e03ae16..8680fcb09 100644 --- a/packages/web/components/elements/MobileInstallHelp.tsx +++ b/packages/web/components/elements/MobileInstallHelp.tsx @@ -39,7 +39,7 @@ export default function MobileInstallHelp({ }, ] - const iosContainerStyles = { width: '100%', height: !onboarding ? '37px' : '40px'} + const iosContainerStyles = { marginTop: '12px', width: '100%', height: '40px', display: 'flex', justifyContent: !onboarding ? 'flex-end' : 'initial'} return ( - Install Omnivore iOS + Install Omnivore for iOS + +const Template: ComponentStory = (args) => ( + + + +) + +export const MobileInstallHelpStory = Template.bind({}) +MobileInstallHelpStory.args = { + onboarding: false, +} + +export const OnboardingMobileInstallHelpStory = Template.bind({}) +OnboardingMobileInstallHelpStory.args = { + onboarding: true, +}