aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/Compiler.tsx
diff options
context:
space:
mode:
authorMegan Pearson <megan.e.pearson@gmail.com>2018-10-19 15:37:14 +0800
committerAugust Skare <post@augustskare.no>2018-10-22 19:27:35 +0800
commit47b281b754a77a2104d39bafa5ea49584f8840cc (patch)
tree06d776c0980c91f58c776e10d326651915a7ff71 /packages/dev-tools-pages/ts/components/Compiler.tsx
parent580e574c841fb9b0ba9d37a50bd5a0f787799ff2 (diff)
downloaddexon-sol-tools-47b281b754a77a2104d39bafa5ea49584f8840cc.tar
dexon-sol-tools-47b281b754a77a2104d39bafa5ea49584f8840cc.tar.gz
dexon-sol-tools-47b281b754a77a2104d39bafa5ea49584f8840cc.tar.bz2
dexon-sol-tools-47b281b754a77a2104d39bafa5ea49584f8840cc.tar.lz
dexon-sol-tools-47b281b754a77a2104d39bafa5ea49584f8840cc.tar.xz
dexon-sol-tools-47b281b754a77a2104d39bafa5ea49584f8840cc.tar.zst
dexon-sol-tools-47b281b754a77a2104d39bafa5ea49584f8840cc.zip
Implements color variables and updates components
Diffstat (limited to 'packages/dev-tools-pages/ts/components/Compiler.tsx')
-rw-r--r--packages/dev-tools-pages/ts/components/Compiler.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/dev-tools-pages/ts/components/Compiler.tsx b/packages/dev-tools-pages/ts/components/Compiler.tsx
index 6dcfda70c..fcdbb6bfe 100644
--- a/packages/dev-tools-pages/ts/components/Compiler.tsx
+++ b/packages/dev-tools-pages/ts/components/Compiler.tsx
@@ -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;
`;