From 1f44ee7eb172f7f17891325db24c685adcfa16a3 Mon Sep 17 00:00:00 2001 From: Tomas <27066503+creatort@users.noreply.github.com> Date: Thu, 18 May 2023 20:01:21 +0100 Subject: Add files via upload --- tailwind.config.js | 19 +++++++++++++++++++ 1 file changed, 19 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..6e82c1a --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,19 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: [ + './pages/**/*.{js,ts,jsx,tsx}', + './components/**/*.{js,ts,jsx,tsx}', + ], + theme: { + fontFamily: { + sans: ['Montserrat', 'sans-serif'], + }, + extend: { + zIndex: { + 'm10': '-10', + } + }, + }, + plugins: [], +} + -- cgit v1.2.3