From 61f10f024a60b12490db504e5820e95e968bbb3c Mon Sep 17 00:00:00 2001 From: Gustavo Lelis Date: Tue, 21 Apr 2020 12:44:54 -0300 Subject: [PATCH] Include theme min height --- platform/ui/tailwind.config.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/platform/ui/tailwind.config.js b/platform/ui/tailwind.config.js index 24cad7938..aa238afe4 100644 --- a/platform/ui/tailwind.config.js +++ b/platform/ui/tailwind.config.js @@ -375,11 +375,12 @@ module.exports = { full: '100%', ...breakpoints(theme('screens')), }), - minHeight: { + minHeight: (theme) => ({ + ...theme('spacing'), '0': '0', full: '100%', screen: '100vh', - }, + }), minWidth: (theme) => ({ ...theme('spacing'), '0': '0',