From 4c7eaf1bba63c197531d2087164e8db1423cbdfe Mon Sep 17 00:00:00 2001 From: Caleb Date: Mon, 2 Oct 2017 16:02:55 -0600 Subject: [PATCH] Override react-toolbox font setting. --- postcss.config.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/postcss.config.js b/postcss.config.js index ec17a0f2..e24f5b66 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -5,6 +5,13 @@ module.exports = { require('postcss-import')({ addDependencyTo: webpack }), require('postcss-cssnext')({ browsers: ['last 2 versions', 'IE > 10'], + features: { + customProperties: { + variables: { + "preferred-font": 'inherit', // Override react-toolbox font setting + }, + }, + }, }), ], };