An open API service indexing awesome lists of open source software.

https://github.com/kbariotis/gridorous

CSS grid exposed as a function to be used in CSS Modules
https://github.com/kbariotis/gridorous

css-in-js flexbox-grid

Last synced: 11 months ago
JSON representation

CSS grid exposed as a function to be used in CSS Modules

Awesome Lists containing this project

README

          

# Gridorous

> CSS grid exposed as a function to be used in CSS Modules

## Brief
Gridorous provides a set of functions based on the [Flexboxgrid.com](http://flexboxgrid.com/)
than can be used to generate CSS-in-JS objects to be parsed by [glamor](https://github.com/threepointone/glamor)
and possibly other libraries.

## Example

```JavaScript

const {makeRow, makeColXs} = require('gridorous');
const {css} = require('glamor');

module.exports = function () {
return (



Left side


Right side


)
}

```