highTailplugin provides additional tailwind height utility classes fromh-1/7toh-1/14
>>> npm i @hackwithharsha/hightail- In
tailwind.config.jsaddhightailplugin to plugins section like following.
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {},
},
plugins: [
require('@hackwithharsha/hightail'),
],
}<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>