axelra-styled-bootstrap-grid
TypeScript icon, indicating that this package has built-in type declarations

0.7.6 • Public • Published

Axelra Styled Bootstrap Grid

This library is a re-implementation of the bootstrap grid layout system. It uses styled-components as basic components for styling your web layout.


Docs

https://lucas-pelloni.gitbook.io/styled-bootstrap-grid/

Get Started

You can install the library using either yarn or npm.

$ yarn add axelra-styled-bootstrap-grid 

Since this library has been built from skratch, you can simply re-styling all components defined on it. For instance, if you want to create a basic grid layout you can do the following:

import React from "react"; 
import styled from "styled-components"; 
import {Col, Container, Row, Spacer} from "axelra-styled-bootstrap-grid";

const MyContainer = styled(Container)`
  margin-top: 10px;
`;

const Column = styled(Col)`
    display: flex; 
`;

export const Example = () => {
  return (
    <MyContainer fluid>
      <Spacer x10 />
      <Row>
        <Column md={5}>asfasf</Column>
      </Row>
    </MyContainer>
  );
};

Dependencies (3)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i axelra-styled-bootstrap-grid

    Weekly Downloads

    79

    Version

    0.7.6

    License

    ISC

    Unpacked Size

    519 kB

    Total Files

    29

    Last publish

    Collaborators

    • lucaspelloni