1.0.3 • Published 1 year ago

@hackwithharsha/hightail v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

highTail

  • highTail plugin provides additional tailwind height utility classes from h-1/7 to h-1/14

Installation

>>> npm i @hackwithharsha/hightail

Configuration

  • In tailwind.config.js add hightail plugin to plugins section like following.
module.exports = {
  content: [
    "./src/**/*.{js,jsx,ts,tsx}",
  ],
  theme: {
    extend: {},
  },
  plugins: [
    require('@hackwithharsha/hightail'),
  ],
}

Usage

<div class="h-full">
    <div class="h-1/10"></div>
    <div class="h-2/10"></div>
    <div class="h-3/10"></div>
    <div class="h-4/10"></div>
</div>

Contributors