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

radium-bootstrap-grid

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

radium-bootstrap-grid

Bootstrap grid writen in inline styles (mainly for Radium)

  • 0.0.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
136
increased by134.48%
Maintainers
1
Weekly downloads
 
Created
Source

Radium Bootstrap Grid

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 React from 'react';
import {Column, Container, Row} from 'radium-bootstrap-grid';

@Radium
export default class Page extends Component {

  render() {
    return (
      <Container>
        <Row>
          <Column
            large={1}
            medium={2}
            phone={6}
            small={3}
            tablet={4}
          >
            Text
          </Column>
        </Row>
      </Container>
    );
  }

}

Example app

npm install
cd ./example_app
npm install
gulp

this will start development server at localhost:8000 and you can check the grid

License

MIT © Jiri Orsag

Keywords

FAQs

Package last updated on 13 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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