Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Commit

Permalink
fix: Added a blank space to align buttons in the Share Safe App Page (#…
Browse files Browse the repository at this point in the history
…3931)

* Added a blank space to align buttons in the Share Safe App Page
  • Loading branch information
DaniSomoza authored Jun 9, 2022
1 parent 4641016 commit 7e67c1f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/routes/SafeAppLandingPage/components/TryDemoSafe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { secondary } from 'src/theme/variables'
import DemoSvg from 'src/assets/icons/demo.svg'
import { trackEvent } from 'src/utils/googleTagManager'
import { SAFE_APPS_EVENTS } from 'src/utils/events/safeApps'
import Spacer from 'src/components/Spacer'

const TryDemoSafe = ({ safeAppUrl }: { safeAppUrl: string | null }): ReactElement => {
const history = useHistory()
Expand All @@ -24,6 +25,8 @@ const TryDemoSafe = ({ safeAppUrl }: { safeAppUrl: string | null }): ReactElemen
<SafeDemoContainer>
<Title size="xs">Want to try the app before using it?</Title>

<Spacer />

<img alt="Demo" height={92} src={DemoSvg} />

{safeAppUrl && (
Expand Down

0 comments on commit 7e67c1f

Please sign in to comment.