@hackwithharsha/hightail
v1.0.3
Published
Add tailwind height utility classes
Downloads
21
Maintainers
Readme
highTail
highTailplugin provides additional tailwind height utility classes fromh-1/7toh-1/14
Installation
>>> npm i @hackwithharsha/hightailConfiguration
- In
tailwind.config.jsaddhightailplugin 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>