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

postcss-grid-fluid

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-grid-fluid - npm Package Compare versions

Comparing version 0.1.14 to 0.1.15

24

package.json
{
"name": "postcss-grid-fluid",
"version": "0.1.14",
"version": "0.1.15",
"description": "A PostCSS plugin to create fluid grids.",

@@ -24,3 +24,3 @@ "keywords": [

"dependencies": {
"postcss": "^5.2.4"
"postcss": "^6.0.1"
},

@@ -33,12 +33,12 @@ "scripts": {

"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"postcss-cli": "^2.6.0"
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"postcss-cli": "^4.0.0"
},

@@ -45,0 +45,0 @@ "eslintConfig": {

@@ -42,5 +42,5 @@ # postcss-grid-fluid

{
width: 1; /* width/total of one blob integer if there is a _total_ or a float smaller than 1. */
gutter: 0; /* width of the gutter */
display: 'flex'; /* 'float' or 'flex' */
width: 1, /* width/total of one blob integer if there is a _total_ or a float smaller than 1. */
gutter: 0, /* width of the gutter */
display: 'flex' /* 'float' or 'flex' */
}

@@ -47,0 +47,0 @@ ```

@@ -9,3 +9,3 @@ import postcss from 'postcss';

if (width[1]) {
widthValue = 100 * width[0] / width[1];
widthValue = (100 * width[0]) / width[1];
} else {

@@ -12,0 +12,0 @@ widthValue = 100 * width[0];

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