0.7.6 • Published 1 year ago

axelra-styled-bootstrap-grid v0.7.6

Weekly downloads
298
License
ISC
Repository
github
Last release
1 year ago

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>
  );
};
0.7.6

1 year ago

0.7.5

1 year ago

0.7.4

3 years ago

0.7.2

3 years ago

0.7.1

3 years ago

0.7.3

3 years ago

0.6.9

4 years ago

0.7.0

4 years ago

0.6.7

4 years ago

0.6.6

4 years ago

0.6.8

4 years ago

0.6.5

4 years ago

0.6.4

4 years ago

0.6.3

5 years ago

0.6.2

5 years ago

0.6.1

5 years ago

0.6.0

5 years ago

0.5.0

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.6

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago