From 19bcc7db7cd6b5958b9848e3dcc72ac53f6b1073 Mon Sep 17 00:00:00 2001 From: apanizo Date: Wed, 5 Sep 2018 15:50:19 +0200 Subject: [PATCH] Modified border and added xl in variables.js --- src/theme/variables.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/theme/variables.js b/src/theme/variables.js index 66be6df2..b1721dec 100644 --- a/src/theme/variables.js +++ b/src/theme/variables.js @@ -1,5 +1,5 @@ // @flow -const border = '#e4e8f1' +const border = '#eaebef' const background = '#f4f4f9' const primary = '#4a5579' const secondary = '#13222b' @@ -10,7 +10,8 @@ const xs = '4px' const sm = '8px' const md = '16px' const lg = '24px' -const xl = '42px' +const xl = '32px' +const xxl = '40px' module.exports = Object.assign({}, { primary, @@ -24,6 +25,7 @@ module.exports = Object.assign({}, { md, lg, xl, + xxl, border, fontSizeHeadingXs: 13, fontSizeHeadingSm: 18,