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-08-28 19:05:56 +0300
committerGitHub <noreply@github.com>2019-08-28 19:05:56 +0300
commit89f7a63ee4826b646ec659709cc170b8c45cddbc (patch)
treeaab7f3991699ffe9f423a0599b9e1c75442e6d4d /bower.json
parent7a15c1a4e41b1fd46b3f26be3529abc1e2d65a4d (diff)
Support for every property (#144)
- Support for all properties - Shorthand mixins for margins and paddings - Support for custom properties - Clearer way to declare `!important` rules: `@include rfs(1rem !important)` instead of `@include rfs(1rem, true)` - Switched to mobile first approach, still possible to switch to the `max-width` media queries if needed - Configuration variables are changed: - Base font size -> Base value - Font size unit -> Unit - `responsive-font-size` property changed to `rfs()` function (see https://github.com/twbs/rfs/issues/116) - Dropped `responsive-font-size` mixins - Dropped Less 2 support since we had to work with lists - Prevent generation of `/test/expected/main.css` - Additional tests for new implementations - Cleanup npm scripts examples - Code examples in `README.md` are grouped by processor and collapsed
Diffstat (limited to 'bower.json')
-rw-r--r--bower.json18
1 files changed, 11 insertions, 7 deletions
diff --git a/bower.json b/bower.json
index c06840b..e4648c9 100644
--- a/bower.json
+++ b/bower.json
@@ -1,25 +1,29 @@
{
"name": "rfs",
- "description": "A scss-mixin for responsive font-sizes.",
- "main": "postcss/rfs.js",
+ "description": "Powerful & easy-to-use responsive resizing engine.",
+ "main": "postcss.js",
"authors": [
"Martijn Cuppens <martijn.cuppens@gmail.com>"
],
"license": "MIT",
"keywords": [
"rfs",
- "scss",
+ "fluid",
"responsive",
- "responsive-font-size",
"font-size",
- "typography"
+ "typography",
+ "mixin",
+ "scss",
+ "sass",
+ "less",
+ "stylus",
+ "postcss"
],
"homepage": "https://github.com/twbs/rfs",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
- "test",
- "tests"
+ "test"
]
}