From fe1bf0695bcb5216b6226c8404a196bacc603c8e Mon Sep 17 00:00:00 2001 From: NikolaBorislavovHristov Date: Thu, 21 Jun 2018 11:27:29 +0300 Subject: [PATCH] less constants added in the common package --- src/common/constants.less | 1 + webpack.config.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 src/common/constants.less diff --git a/src/common/constants.less b/src/common/constants.less new file mode 100644 index 000000000..df8800341 --- /dev/null +++ b/src/common/constants.less @@ -0,0 +1 @@ +@nav-bar-height: 44px; diff --git a/webpack.config.js b/webpack.config.js index 2243180e5..42da7aa62 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -53,7 +53,8 @@ module.exports = { noIeCompat: true, compress: true, paths: [ - path.resolve(__dirname, 'node_modules/stremio-colors') + path.resolve(__dirname, 'node_modules/stremio-colors'), + path.resolve(__dirname, 'src/common') ] } }