aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/banner.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/@next/components/banner.tsx')
-rw-r--r--packages/website/ts/@next/components/banner.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/website/ts/@next/components/banner.tsx b/packages/website/ts/@next/components/banner.tsx
index 5b8c109fb..90d09cc9e 100644
--- a/packages/website/ts/@next/components/banner.tsx
+++ b/packages/website/ts/@next/components/banner.tsx
@@ -4,9 +4,9 @@ import styled from 'styled-components';
import {colors} from 'ts/style/colors';
import {Button, Link} from 'ts/@next/components/button';
-import {Wrap, WrapCentered } from 'ts/@next/components/layout';
-import {Paragraph, Heading} from 'ts/@next/components/text';
-import { ThemeInterface } from 'ts/@next/components/siteWrap';
+import {Wrap, WrapCentered} from 'ts/@next/components/layout';
+import {ThemeInterface} from 'ts/@next/components/siteWrap';
+import {Heading, Paragraph} from 'ts/@next/components/text';
import {Column, Section} from 'ts/@next/components/newLayout';
@@ -118,7 +118,7 @@ const ButtonWrap = styled.div`
// to pass props down into the styled icon?
const Border = styled.div<BorderProps>`
position: absolute;
- background-image: ${props => props.isBottom ? 'url(/images/@next/banner/bottomofcta.png);': 'url(/images/@next/banner/topofcta.png);' };
+ background-image: ${props => props.isBottom ? 'url(/images/@next/banner/bottomofcta.png);' : 'url(/images/@next/banner/topofcta.png);' };
background-position: ${props => props.isBottom ? 'left top' : 'left bottom' };
left: 0;
width: calc(100% + 214px);