0.0.3 • Published 3 years ago

tailwind-lite v0.0.3

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

tailwind-lite

Still working in progress...

  • import pure css, no postcss or sass needed
  • customizable via css variables
  • compatible with no-browser environment, such as wechat miniprogram

Installation

npm i tailwind-lite

Usage

import 'tailwind-lite'

// begin your magic

Note

Currently, all the / in class names should be replaced by o, and all the . should be replaced by p for some reasons,for example:

<!-- won't work -->
<div class="w-1/2"></div>
<div class="gap-0.5"></div>

should be written like this:

<!-- will work -->
<div class="w-1o2"></div>
<div class="gap-0p5"></div>
0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago