diff --git a/README.md b/README.md index 6847b6b..e446ebf 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # tailwind-class-extend -A Tailwind CSS plugin for additional utility classes. +A TailwindCSS plugin for additional utility classes. ## Installation @@ -40,3 +40,4 @@ module.exports = { | flex-column | flex flex-col | | word-break | word-break: break-word; | | word-break-all | word-break: break-all; | +| min-h-inherit | min-height: inherit; | diff --git a/package-lock.json b/package-lock.json index 036533f..4ad2c13 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tailwind-class-extend", - "version": "1.0.0", + "version": "1.0.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "tailwind-class-extend", - "version": "1.0.0", + "version": "1.0.4", "license": "MIT", "devDependencies": { "postcss": "^8.4.33", diff --git a/package.json b/package.json index 7ff3b87..022d8f6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tailwind-class-extend", - "version": "1.0.3", + "version": "1.0.4", "description": "A utility package for extending Tailwind CSS with additional useful classes.", "main": "src/index.js", "scripts": {}, diff --git a/src/index.js b/src/index.js index 6881bbd..f6bcfe4 100644 --- a/src/index.js +++ b/src/index.js @@ -42,5 +42,8 @@ module.exports = plugin(function ({ addUtilities }) { '.word-break-all': { wordBreak: 'break-all', }, + '.min-h-inherit': { + minHeight: 'inherit', + }, }) })