Changed name of export to colors and updates components

This commit is contained in:
Megan Pearson
2018-10-19 11:32:59 +02:00
committed by August Skare
parent 47b281b754
commit ee3538262d
8 changed files with 22 additions and 20 deletions

View File

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