From 5e8f53c7b787fa99e721fe9949ecd762715bb891 Mon Sep 17 00:00:00 2001 From: Megan Pearson Date: Thu, 25 Oct 2018 11:40:19 +0200 Subject: Updates intro component --- packages/dev-tools-pages/ts/components/Intro.tsx | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'packages') diff --git a/packages/dev-tools-pages/ts/components/Intro.tsx b/packages/dev-tools-pages/ts/components/Intro.tsx index a5a7e9dc4..b475bd34b 100644 --- a/packages/dev-tools-pages/ts/components/Intro.tsx +++ b/packages/dev-tools-pages/ts/components/Intro.tsx @@ -32,7 +32,6 @@ const Blocks = styled.div` ${media.small`display: block;`}; `; - const StyledIntroLead = styled(Lead)` max-width: 25.9375rem; @@ -41,7 +40,7 @@ const StyledIntroLead = styled(Lead)` const StyledIntroAside = styled.div` max-width: 32.5rem; - position: relative; + position: relative; `; interface IntroProps { @@ -59,17 +58,15 @@ function IntroLead(props: IntroLeadProps) { {props.title} {props.children} - ) + ); } function IntroAside(props: IntroProps) { return ( - - {props.children} - + {props.children} - ) + ); } function Intro(props: IntroProps) { -- cgit v1.2.3