diff options
| author | Tomas <27066503+creatort@users.noreply.github.com> | 2023-05-18 20:01:21 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-18 20:01:21 +0100 |
| commit | 1f44ee7eb172f7f17891325db24c685adcfa16a3 (patch) | |
| tree | 9a4d287b1ab05416e0a2b0cde4ab11dc3929572d /tailwind.config.js | |
| parent | 09f5813252335f44c8dbd52e02902c9958a09ae5 (diff) | |
| download | sei-website-1f44ee7eb172f7f17891325db24c685adcfa16a3.tar.gz sei-website-1f44ee7eb172f7f17891325db24c685adcfa16a3.tar.bz2 sei-website-1f44ee7eb172f7f17891325db24c685adcfa16a3.zip | |
Add files via upload
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 19 |
1 files changed, 19 insertions, 0 deletions
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: [], +} + |
