1.0.0 • Published 2 years ago

flx-layout v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Introduction

flx-layout is a flexbox library for creating responsive and mobile-first layouts

Quick start

Looking to quickly add Flx to your project? Install flx-layout using npm package:

npm install --save flx-layout

Usage

In your global styles import flx-layout:

@import 'flx-layout';

In your html write the following:

<div class="flx-layout flx-layout-row flx-layout-justify-between">
    <div class="box"></div>
    <div class="box"></div>
    <div class="box"></div>
</div>