From c8ee7dbd75979a4d5fe5c6de35fac742b6a4c8fe Mon Sep 17 00:00:00 2001 From: EINazare Date: Thu, 18 Mar 2021 16:01:25 +0200 Subject: [PATCH] style: run prettier --- tailwind.config.js | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index dd4db8a9..92a8bd07 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -25,14 +25,14 @@ module.exports = { "screen-75": "75vh", }, fontSize: { - "55": "55rem", + 55: "55rem", }, opacity: { - "80": ".8", + 80: ".8", }, zIndex: { - "2": 2, - "3": 3, + 2: 2, + 3: 3, }, inset: { "-100": "-100%", @@ -72,7 +72,7 @@ module.exports = { }, minWidth: { "140-px": "140px", - "48": "12rem", + 48: "12rem", }, backgroundSize: { full: "100%", @@ -93,7 +93,9 @@ module.exports = { "visited", "disabled", ], - plugins: [require("@tailwindcss/forms"),plugin(function ({ addComponents, theme }) { + plugins: [ + require("@tailwindcss/forms"), + plugin(function ({ addComponents, theme }) { const screens = theme("screens", {}); addComponents([ { @@ -135,5 +137,6 @@ module.exports = { }, }, ]); - }),], + }), + ], };