Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/postcss/gulp/gulpfile.js2
-rw-r--r--examples/postcss/node/index.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/postcss/gulp/gulpfile.js b/examples/postcss/gulp/gulpfile.js
index b80bdf2..725ba60 100644
--- a/examples/postcss/gulp/gulpfile.js
+++ b/examples/postcss/gulp/gulpfile.js
@@ -3,7 +3,7 @@ const postcss = require('gulp-postcss');
const rfs = require('../../..');
const options = {
twoDimensional: false,
- minimumFontSize: 16,
+ baseFontSize: 16,
fontSizeUnit: 'rem',
breakpoint: 1200,
breakpointUnit: 'px',
diff --git a/examples/postcss/node/index.js b/examples/postcss/node/index.js
index 22663ee..4b77acb 100644
--- a/examples/postcss/node/index.js
+++ b/examples/postcss/node/index.js
@@ -4,7 +4,7 @@ const rfs = require('../../..');
const css = fs.readFileSync(__dirname + '/src/main.css', 'utf8');
const options = {
twoDimensional: false,
- minimumFontSize: 16,
+ baseFontSize: 16,
fontSizeUnit: 'rem',
breakpoint: '75rem',
breakpointUnit: 'px',