diff options
author | Megan Pearson <megan.e.pearson@gmail.com> | 2018-10-19 17:32:59 +0800 |
---|---|---|
committer | Megan Pearson <megan.e.pearson@gmail.com> | 2018-10-19 17:32:59 +0800 |
commit | 585ca203b02e902b3dd5141bcacd0ffc5740e0c1 (patch) | |
tree | 07ea6d5b072a4f71f78895be7329e57ce4f4cd50 /packages/dev-tools-pages/ts/components/Intro.tsx | |
parent | 561f441a5bfc4822b0974169605d089b4f687bf5 (diff) | |
download | dexon-sol-tools-585ca203b02e902b3dd5141bcacd0ffc5740e0c1.tar dexon-sol-tools-585ca203b02e902b3dd5141bcacd0ffc5740e0c1.tar.gz dexon-sol-tools-585ca203b02e902b3dd5141bcacd0ffc5740e0c1.tar.bz2 dexon-sol-tools-585ca203b02e902b3dd5141bcacd0ffc5740e0c1.tar.lz dexon-sol-tools-585ca203b02e902b3dd5141bcacd0ffc5740e0c1.tar.xz dexon-sol-tools-585ca203b02e902b3dd5141bcacd0ffc5740e0c1.tar.zst dexon-sol-tools-585ca203b02e902b3dd5141bcacd0ffc5740e0c1.zip |
Changed name of export to colors and updates components
Diffstat (limited to 'packages/dev-tools-pages/ts/components/Intro.tsx')
-rw-r--r-- | packages/dev-tools-pages/ts/components/Intro.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/dev-tools-pages/ts/components/Intro.tsx b/packages/dev-tools-pages/ts/components/Intro.tsx index 2d4a30f9f..cddee5b6f 100644 --- a/packages/dev-tools-pages/ts/components/Intro.tsx +++ b/packages/dev-tools-pages/ts/components/Intro.tsx @@ -1,11 +1,11 @@ import * as React from 'react'; import styled from 'styled-components'; -import variables from '../variables'; +import { colors } from '../variables'; import { Alpha, Beta } from './Typography'; const Main = styled.div` - background-color: ${variables.colors.lightGray}; + background-color: ${colors.lightGray}; padding: 6.25rem; display: flex; justify-content: space-between; @@ -22,7 +22,7 @@ const Content = styled.div` `; const Code = styled.div` - background-color: ${variables.colors.darkGray}; + background-color: ${colors.darkGray}; width: 520px; height: 350px; `; |