0.1.8 • Published 7 years ago

radium-bootstrap-grid v0.1.8

Weekly downloads
249
License
MIT
Repository
github
Last release
7 years ago

Radium Bootstrap Grid

Grid system based on Twitter Bootstrap but with additional 480px breakpoint.

Install

$ npm install --save radium-bootstrap-grid

Add it to your project

Look at example directory and you need to add only:

import Component from 'react-pure-render/component';
import Radium from 'radium';
import React from 'react';
import { Column, Container, Row } from 'radium-bootstrap-grid';

@Radium
export default class Page extends Component {

  render() {
    return (
      <Container>
        <Row>
          <Column
            ms={4}
            xsHidden
          >
            Make a column
          </Column>
        </Row>
      </Container>
    );
  }

}

Supported features

Multiple stacking option

<Column lg={1} md={3} ms={6} sm={4} xs={12}>Adjust to the device</Column>

Hiding columns

<Column lgHidden mdHidden msHidden smHidden xsHidden>Hidden forever</Column>

Example app

$ npm install
$ cd ./example_app
$ npm install
$ npm start

This will start development server at http://localhost:3001/ and you can check the grid.

License

MIT © Jiri Orsag

0.1.9

7 years ago

0.1.8

7 years ago

0.1.7

7 years ago

0.1.6

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago