From 3ff7368f06027ebb595757628101f06f0ba3412d Mon Sep 17 00:00:00 2001 From: yudejp Date: Sun, 30 May 2021 10:39:24 +0900 Subject: [PATCH] Add max-height scale --- tailwind.config.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tailwind.config.js b/tailwind.config.js index 9adae07..6a5f7c2 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -8,7 +8,14 @@ module.exports = { "16/9": [16, 9], "4/3": [4, 3], "21/9": [21, 9] - }, + }, + maxHeight: { + '0': '0', + '1/4': '25%', + '1/2': '50%', + '3/4': '75%', + 'full': '100%', + }, filter: { // defaults to {} 'none': 'none', 'grayscale': 'grayscale(1)',