diff options
author | Fabio Berger <me@fabioberger.com> | 2019-01-17 23:38:30 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2019-01-17 23:38:30 +0800 |
commit | 7b2a9ba698034dfe9dde909753223fcd4a520337 (patch) | |
tree | d08780b5eec16fe11e7d1a011fa8efdc05349cb7 | |
parent | 87d08b0af67e460b4ba5f1f8db9b42dd6f73ee3a (diff) | |
download | dexon-sol-tools-7b2a9ba698034dfe9dde909753223fcd4a520337.tar.gz dexon-sol-tools-7b2a9ba698034dfe9dde909753223fcd4a520337.tar.zst dexon-sol-tools-7b2a9ba698034dfe9dde909753223fcd4a520337.zip |
Fix linter errors
-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 }; |