rework-mixins
Advanced tools
Comparing version 1.1.1 to 1.2.0
@@ -8,2 +8,3 @@ | ||
exports['opacity'] = require('./lib/opacity'); | ||
exports['display'] = require('./lib/display'); | ||
exports['size'] = require('./lib/size'); |
{ | ||
"name": "rework-mixins", | ||
"version": "1.1.1", | ||
"version": "1.2.0", | ||
"description": "Rework CSS mixins", | ||
"keywords": ["rework", "css", "preprocessor", "mixins"], | ||
"keywords": [ | ||
"rework", | ||
"css", | ||
"preprocessor", | ||
"mixins" | ||
], | ||
"author": "TJ Holowaychuk <tj@vision-media.ca>", | ||
@@ -11,3 +16,4 @@ "dependencies": {}, | ||
"should": "*", | ||
"rework": "*" | ||
"rework": "*", | ||
"rework-plugin-mixin": "*" | ||
}, | ||
@@ -17,3 +23,7 @@ "main": "index", | ||
"test": "mocha --require should --reporter spec" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/visionmedia/rework-mixins.git" | ||
} | ||
} |
@@ -36,2 +36,3 @@ | ||
- [border-radius](#border-radius) | ||
- [display-flex](#display-flex) | ||
- [absolute](#absolute--relative--fixed) | ||
@@ -114,2 +115,24 @@ - [relative](#absolute--relative--fixed) | ||
## display-flex | ||
Allows you to use `display: flex`: | ||
```css | ||
.wrapper { | ||
display: flex; | ||
} | ||
``` | ||
yields: | ||
```css | ||
.wrapper { | ||
display: -webkit-box; | ||
display: -moz-box; | ||
display: -ms-flexbox; | ||
display: -webkit-flex; | ||
display: flex; | ||
} | ||
``` | ||
## absolute | relative | fixed | ||
@@ -177,4 +200,6 @@ | ||
## | ||
## License | ||
MIT |
Sorry, the diff of this file is not supported yet
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
7442
17
189
203
0
4
1