Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rework-mixins

Package Overview
Dependencies
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rework-mixins - npm Package Compare versions

Comparing version 1.1.1 to 1.2.0

lib/display.js

1

index.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc