1.0.1 • Published 4 years ago

flex-grid-lite v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Flex Grid Lite

Lightweight column grid with the power of flexbox.

Built using a functional CSS approach which means you get exactly what you ask for without any hidden surprises. The resulting file size is far smaller than a traditional column grid.

View the example

Quick-Start

import React from 'react';

import 'flex-grid-lite';

function App() {
    return (
        <div className="grid">
            <div className="col col-3">col-3</div>
            <div className="col">col-auto</div>
        </div>
    )
}