Feedback from harry

This commit is contained in:
Fred Carlsen
2018-12-13 14:47:15 +01:00
parent 455f244ec5
commit a1737f8d93
7 changed files with 17 additions and 10 deletions

View File

@@ -3,6 +3,7 @@ import styled from 'styled-components';
import {Link} from 'ts/@next/components/button';
import { Icon } from 'ts/@next/components/icon';
import { Paragraph } from 'ts/@next/components/text';
interface Action {
label: string;
@@ -34,7 +35,7 @@ export const Definition = (props: Props) => (
{props.title}
</Title>
<Paragraph>
<Paragraph isMuted={true}>
{props.description}
</Paragraph>
@@ -97,11 +98,6 @@ const Title = styled.h2`
margin-bottom: 15px;
`;
const Paragraph = styled.p`
font-size: 17px;
opacity: 0.75;
`;
const LinkWrap = styled.div`
display: inline-flex;
margin-top: 60px;