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@gmail.com>2019-02-06 21:08:07 +0300
committerMartijn Cuppens <martijn.cuppens@gmail.com>2019-02-11 21:27:14 +0300
commit946d661489bc8e19a57f21df567e69c67f297bca (patch)
treeff1f6091d39e462931603371f2ff7e57d87c6091 /README.md
parent9992870798d7a48c201dbe7fcfb638fa2d31e97b (diff)
change `responsive-font-size` to `font-size`
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 21571ba..7db14f8 100644
--- a/README.md
+++ b/README.md
@@ -91,7 +91,7 @@ project/
@import "../node_modules/rfs/sass"
.title
- +responsive-font-size(4rem) // OR +responsive-font-size(64px) OR +rfs(64)
+ +font-size(4rem) // OR +responsive-font-size(64px) OR +rfs(64)
```
@@ -101,7 +101,7 @@ project/
// postcss/main.css
.title {
- responsive-font-size: 4rem; // OR responsive-font-size: 64px; OR rfs: 64;
+ font-size: 4rem; // OR responsive-font-size: 64px; OR rfs: 64;
}
// Handle postcss afterwards (see examples folder for PostCSS example)
@@ -116,7 +116,7 @@ project/
@import "../node_modules/rfs/less";
.title {
- .responsive-font-size(4rem); // OR .responsive-font-size(64px); OR .rfs(64);
+ .font-size(4rem); // OR .responsive-font-size(64px); OR .rfs(64);
}
```
@@ -129,7 +129,7 @@ project/
@import "../node_modules/rfs/stylus";
.title
- responsive-font-size(4rem) // OR responsive-font-size(64px) OR rfs(64)
+ font-size(4rem) // OR responsive-font-size(64px) OR rfs(64)
```