From 170d77b3ecb2d0c5c35263a2f5598002af599a43 Mon Sep 17 00:00:00 2001 From: Jfriedli Date: Thu, 18 Mar 2021 09:25:11 +0100 Subject: installed tailwind and removed old css/js --- tailwind.config.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tailwind.config.js (limited to 'tailwind.config.js') diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..ce94ce1 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,18 @@ +const defaultTheme = require('tailwindcss/defaultTheme') + +module.exports = { + future: { + // removeDeprecatedGapUtilities: true, + // purgeLayersByDefault: true, + }, + purge: [], + theme: { + extend: { + fontFamily: { + sans: ['Inter var', ...defaultTheme.fontFamily.sans], + }, + }, + }, + variants: {}, + plugins: [], +} -- cgit v1.3