aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/InlineCode.tsx
diff options
context:
space:
mode:
authorMegan Pearson <megan.e.pearson@gmail.com>2018-10-19 17:32:59 +0800
committerAugust Skare <post@augustskare.no>2018-10-22 19:27:35 +0800
commitee3538262d2d736168324a3f60a49cd87d65abb1 (patch)
tree50f4237c885386844c8f40e87ee27a917759d1fb /packages/dev-tools-pages/ts/components/InlineCode.tsx
parent47b281b754a77a2104d39bafa5ea49584f8840cc (diff)
downloaddexon-sol-tools-ee3538262d2d736168324a3f60a49cd87d65abb1.tar
dexon-sol-tools-ee3538262d2d736168324a3f60a49cd87d65abb1.tar.gz
dexon-sol-tools-ee3538262d2d736168324a3f60a49cd87d65abb1.tar.bz2
dexon-sol-tools-ee3538262d2d736168324a3f60a49cd87d65abb1.tar.lz
dexon-sol-tools-ee3538262d2d736168324a3f60a49cd87d65abb1.tar.xz
dexon-sol-tools-ee3538262d2d736168324a3f60a49cd87d65abb1.tar.zst
dexon-sol-tools-ee3538262d2d736168324a3f60a49cd87d65abb1.zip
Changed name of export to colors and updates components
Diffstat (limited to 'packages/dev-tools-pages/ts/components/InlineCode.tsx')
-rw-r--r--packages/dev-tools-pages/ts/components/InlineCode.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/dev-tools-pages/ts/components/InlineCode.tsx b/packages/dev-tools-pages/ts/components/InlineCode.tsx
index f8aad8795..bfbaeb395 100644
--- a/packages/dev-tools-pages/ts/components/InlineCode.tsx
+++ b/packages/dev-tools-pages/ts/components/InlineCode.tsx
@@ -1,8 +1,8 @@
import styled from 'styled-components';
-import variables from '../variables';
+import { colors } from '../variables';
const InlineCode = styled.code`
- background-color: ${variables.colors.blueGray}
+ background-color: ${colors.blueGray}
padding: 0.1875rem;
`;