tailwindcss init full

CSS
//Scaffolding the entire default configuration

//This will full tailwind.config.js file at the root of your project:

npx tailwindcss init -- full

module.exports = {
    theme: {
        // ....
        extend: {
            height: {
                sm: '20rem'
            }
        }
        // ...
    }
}

// Generates h-sm with 20rem height
Source

Also in CSS: