From cd29569287bcf761e26a40af0cf3b302bf14830b Mon Sep 17 00:00:00 2001 From: apanizo Date: Thu, 30 Aug 2018 13:15:53 +0200 Subject: [PATCH] Using variable in Hairline --- src/components/layout/Hairline/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/layout/Hairline/index.js b/src/components/layout/Hairline/index.js index 99c4912d..cf47e673 100644 --- a/src/components/layout/Hairline/index.js +++ b/src/components/layout/Hairline/index.js @@ -1,10 +1,11 @@ // @flow import * as React from 'react' +import { border } from '~/theme/variables' const hairlineStyle = { width: '100%', height: '2px', - backgroundColor: '#d5d4d6', + backgroundColor: border, margin: '20px 0px', }