Socket
Socket
Sign inDemoInstall

react-awesome-styled-grid

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-awesome-styled-grid

A responsive grid system layout for React using styled-components


Version published
Weekly downloads
7.4K
increased by88.53%
Maintainers
1
Weekly downloads
 
Created
Source

npm version All Contributors Commitizen friendly js-standard-style codecov Publish to NPM Netlify Status

React Awesome Styled Grid 😎

A responsive grid system for React using styled-components

Installation

npm i --save react-awesome-styled-grid

Dependencies

styled-components is a peerDependency and must be installed separately.

npm i --save styled-components

Documentation

Click here for documentation

Basic usage

This grid system is mobile-first based on Google Material Design.

Number of columns: xs: 4, sm: 8, md: 8, lg: 12, xl: 12

Breakpoints size: xs: > 1rem, sm: > 48rem, md: > 64rem, lg: > 90rem, xl: > 120rem

for a custom configuration, see this section of documentation

import { Container, Row, Col } from "react-awesome-styled-grid";

const MyCoolComponent = () => (
  <Container>
    <Row>
      <Col xs={4} md={2}>
        Col A
      </Col>
      <Col xs={6} md={10}>
        Col B
      </Col>
    </Row>
  </Container>
);

Development

run yarn install or npm install to install all dependencies

run yarn start or npm run start to run Docusaurus on port 3000

Go to http://localhost:3000/demo to see live demo and edit Demo.tsx file

Built With

  • Styled-components - Visual primitives for the component age.
  • Docusaurus - Build optimized websites quickly, focus on your content
  • Rollup - Rollup is a module bundler for JavaScript

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Contributors

Thanks goes to these wonderful people (emoji key):

Francisco Santos
Francisco Santos

💻 📖 👀
Camila Belo
Camila Belo

⚠️
Fábio Henrique Gabriele
Fábio Henrique Gabriele

⚠️
Bernardo Mariano
Bernardo Mariano

💻
Ahmed Tarek
Ahmed Tarek

💻
Steve Swanson
Steve Swanson

🚧

This project follows the all-contributors specification. Contributions of any kind welcome!

Keywords

FAQs

Package last updated on 31 May 2024

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