highTail
plugin provides additional tailwind height utility classes fromh-1/7
toh-1/14
>>> npm i @hackwithharsha/hightail
- In
tailwind.config.js
addhightail
plugin 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>