aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/definition.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/@next/components/definition.tsx')
-rw-r--r--packages/website/ts/@next/components/definition.tsx8
1 files changed, 2 insertions, 6 deletions
diff --git a/packages/website/ts/@next/components/definition.tsx b/packages/website/ts/@next/components/definition.tsx
index 54fd56cde..cab153361 100644
--- a/packages/website/ts/@next/components/definition.tsx
+++ b/packages/website/ts/@next/components/definition.tsx
@@ -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;