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-13 00:30:57 +0300
committerGitHub <noreply@github.com>2019-02-13 00:30:57 +0300
commit46b5f06521a1e88bb3c9fa004100ceb84a8e93be (patch)
tree590ce2b4d266d57e9235c93f65e1da557eb39911 /README.md
parent2f6d75f9c42c2785c1a80973fe0af74dc072b2a5 (diff)
Update mixins (#76)
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 7ec18a1..d08c4ae 100644
--- a/README.md
+++ b/README.md
@@ -79,7 +79,7 @@ project/
@import "../node_modules/rfs/scss";
.title {
- @include responsive-font-size(4rem); // OR @include responsive-font-size(64px); OR @include rfs(64);
+ @include font-size(4rem); // OR @include responsive-font-size(64px); OR @include rfs(64);
}
```
@@ -101,7 +101,7 @@ project/
// postcss/main.css
.title {
- font-size: 4rem; // OR responsive-font-size: 64px; OR rfs: 64;
+ responsive-font-size: 4rem; // OR rfs: 64;
}
// Handle postcss afterwards (see examples folder for PostCSS example)