aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/Button.tsx
diff options
context:
space:
mode:
authorMegan Pearson <megan.e.pearson@gmail.com>2018-10-22 20:11:20 +0800
committerMegan Pearson <megan.e.pearson@gmail.com>2018-10-22 20:11:20 +0800
commit50eee9a657fe81fa0af4652f9a5a3f1892a1f1fa (patch)
tree69befae2cf8c87d0bd97bb8e9917515c6033924f /packages/dev-tools-pages/ts/components/Button.tsx
parent580e574c841fb9b0ba9d37a50bd5a0f787799ff2 (diff)
parent917952bc2aac353a2375e1fd7906ed14b81a6830 (diff)
downloaddexon-sol-tools-50eee9a657fe81fa0af4652f9a5a3f1892a1f1fa.tar
dexon-sol-tools-50eee9a657fe81fa0af4652f9a5a3f1892a1f1fa.tar.gz
dexon-sol-tools-50eee9a657fe81fa0af4652f9a5a3f1892a1f1fa.tar.bz2
dexon-sol-tools-50eee9a657fe81fa0af4652f9a5a3f1892a1f1fa.tar.lz
dexon-sol-tools-50eee9a657fe81fa0af4652f9a5a3f1892a1f1fa.tar.xz
dexon-sol-tools-50eee9a657fe81fa0af4652f9a5a3f1892a1f1fa.tar.zst
dexon-sol-tools-50eee9a657fe81fa0af4652f9a5a3f1892a1f1fa.zip
Merge branch 'feature/alternate-main' into dev-tools-pages
Diffstat (limited to 'packages/dev-tools-pages/ts/components/Button.tsx')
-rw-r--r--packages/dev-tools-pages/ts/components/Button.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/dev-tools-pages/ts/components/Button.tsx b/packages/dev-tools-pages/ts/components/Button.tsx
index e676961c8..2d0fbc353 100644
--- a/packages/dev-tools-pages/ts/components/Button.tsx
+++ b/packages/dev-tools-pages/ts/components/Button.tsx
@@ -1,4 +1,5 @@
import styled from 'styled-components';
+import { colors } from '../variables';
import { withContext, Props } from './withContext';
@@ -16,7 +17,7 @@ const Button =
white-space: nowrap;
vertical-align: middle;
background-color: ${props => props.colors.secondary};
- color: #000;
+ color: ${colors.black};
border: 0;
border-radius: 5rem;
padding: ${props => (props.large ? '1.125rem 2.375rem' : '.5625rem 1.25rem')};