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 15:37:14 +0800
committerMegan Pearson <megan.e.pearson@gmail.com>2018-10-19 15:37:14 +0800
commit561f441a5bfc4822b0974169605d089b4f687bf5 (patch)
treed0e2151e49b5337cfb2f71d0d8d987557ca89876 /packages/dev-tools-pages/ts/components/InlineCode.tsx
parent30f7f83573c9254de336c3c2fc7297188d47af15 (diff)
downloaddexon-sol-tools-561f441a5bfc4822b0974169605d089b4f687bf5.tar
dexon-sol-tools-561f441a5bfc4822b0974169605d089b4f687bf5.tar.gz
dexon-sol-tools-561f441a5bfc4822b0974169605d089b4f687bf5.tar.bz2
dexon-sol-tools-561f441a5bfc4822b0974169605d089b4f687bf5.tar.lz
dexon-sol-tools-561f441a5bfc4822b0974169605d089b4f687bf5.tar.xz
dexon-sol-tools-561f441a5bfc4822b0974169605d089b4f687bf5.tar.zst
dexon-sol-tools-561f441a5bfc4822b0974169605d089b4f687bf5.zip
Implements color variables and updates components
Diffstat (limited to 'packages/dev-tools-pages/ts/components/InlineCode.tsx')
-rw-r--r--packages/dev-tools-pages/ts/components/InlineCode.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/dev-tools-pages/ts/components/InlineCode.tsx b/packages/dev-tools-pages/ts/components/InlineCode.tsx
index 037cfa675..f8aad8795 100644
--- a/packages/dev-tools-pages/ts/components/InlineCode.tsx
+++ b/packages/dev-tools-pages/ts/components/InlineCode.tsx
@@ -1,7 +1,8 @@
import styled from 'styled-components';
+import variables from '../variables';
const InlineCode = styled.code`
- background-color: #eceff9;
+ background-color: ${variables.colors.blueGray}
padding: 0.1875rem;
`;