diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/dev-tools-pages/ts/components/call_to_action.tsx | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/packages/dev-tools-pages/ts/components/call_to_action.tsx b/packages/dev-tools-pages/ts/components/call_to_action.tsx index bd255cfe1..2a58d8fca 100644 --- a/packages/dev-tools-pages/ts/components/call_to_action.tsx +++ b/packages/dev-tools-pages/ts/components/call_to_action.tsx @@ -2,10 +2,8 @@ import * as React from 'react'; import styled from 'styled-components'; import { ContextInterface, ThemeContext } from 'ts/context'; -import { media } from 'ts/variables'; import { Button } from './button'; -import { Beta } from './typography'; const CallToAction: React.StatelessComponent<ContextInterface> = ({ children }) => ( <ThemeContext.Consumer> @@ -39,23 +37,4 @@ const CallToActionContainer = styled.div` max-width: 590px; `; -const Subtitle = styled.h2` - font-size: 3.75rem; - line-height: 1.16; - margin-bottom: 1.5rem; - - ${media.small` - font-size: 2.25rem; - line-height: 1.1; - margin-bottom: 1.375rem; - `}; -`; - -const Tagline = styled(Beta)` - margin-bottom: 2rem; - ${media.small` - margin-bottom: 1.25rem; - `}; -`; - export { CallToAction }; |