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

flexgriddle

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flexgriddle - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

4

package.json
{
"name": "flexgriddle",
"version": "1.0.0",
"version": "1.0.1",
"description": "A sass mixin library for creating simple grids using flexbox",

@@ -25,2 +25,2 @@ "scripts": {

}
}
}

@@ -1,1 +0,32 @@

# flexgrid
# Flexgrid
A sass mixin library for creating simple grids using flexbox
## Install
```cli
npm install --save flexgriddle
```
## Usage
This library consists of two mixins which enable you to make a simple grid using `flexbox`.
### Specify the grid container
```scss
.gallery {
@include flexgrid-container();
}
```
Argument:
- __$gutter__ _Optional_. Size of the gutter.
### Specify the grid items
```scss
.gallery__item {
@include flexgrid-item(5);
}
```
Arguments:
- __$number-of-items__. The number of items that one row will contain.
- __$gutter__ _Optional_. Size of the gutter. Should be the same as its container gutter size.
## License
MIT
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