From 700a11765433d7fb7b3e5d2ae969b06f1639861b Mon Sep 17 00:00:00 2001 From: Sercan Yemen Date: Sat, 1 Jan 2022 22:33:23 +0300 Subject: [PATCH] Moved to the new syntax on Tailwind config --- tailwind.config.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index 3f01a437..2491ebc9 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -167,17 +167,17 @@ const config = { '2/4': '50%', '3/4': '75%' }, - minHeight : theme => ({ + minHeight : ({theme}) => ({ ...theme('spacing') }), - maxHeight : theme => ({ + maxHeight : { none: 'none' - }), - minWidth : theme => ({ + }, + minWidth : ({theme}) => ({ ...theme('spacing'), screen: '100vw' }), - maxWidth : theme => ({ + maxWidth : ({theme}) => ({ ...theme('spacing'), screen: '100vw' }), @@ -189,7 +189,7 @@ const config = { }, // @tailwindcss/typography - typography: (theme) => ({ + typography: ({theme}) => ({ DEFAULT: { css: { color : 'var(--fuse-text-default)',