Implements color variables and updates components

This commit is contained in:
Megan Pearson
2018-10-19 09:37:14 +02:00
committed by August Skare
parent 580e574c84
commit 47b281b754
8 changed files with 29 additions and 10 deletions

View File

@@ -1,5 +1,6 @@
import * as React from 'react';
import styled from 'styled-components';
import variables from '../variables';
import InlineCode from './InlineCode';
@@ -13,7 +14,7 @@ const Cards = styled.dl`
`;
const Card = styled.div`
background-color: #f1f4f5;
background-color: ${variables.colors.lightGray};
padding: 3.125rem;
padding-bottom: 2.5rem;
`;