From 7b2a9ba698034dfe9dde909753223fcd4a520337 Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Thu, 17 Jan 2019 16:38:30 +0100 Subject: Fix linter errors --- .../ts/components/call_to_action.tsx | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'packages/dev-tools-pages') 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 = ({ children }) => ( @@ -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 }; -- cgit