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:
authorMartijn Cuppens <martijn.cuppens@intracto.com>2018-12-14 15:10:54 +0300
committerMartijn Cuppens <martijn.cuppens@gmail.com>2019-02-11 21:27:14 +0300
commitbde9b07613695714272af45d09bf86e97e492d4d (patch)
tree1c7d305bd9af9b38bc044405f8c752ddeb43541e /examples
parentf0082a83d8f7665da06e56753d6b3a95b613a3aa (diff)
#48: rename rfs-minimum-font-size to rfs-base-font-size
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',