diff options
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..791f892 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,28 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: [ + './index.html', + './src/**/*.{js,ts,jsx,tsx}', + ], + theme: { + extend: { + backgroundImage: { + 'star': "url('/star.png')", + }, + padding: { + '5%': '5%' + }, + }, + }, + plugins: [ + //require('@tailwindcss/forms'), + //require('@tailwindcss/aspect-ratio'), + //require('@tailwindcss/typography'), + //require('@tailwindcss/container-queries'), + ], + safelist: [ + 'before:w-3', + 'before:w-4' + ] +} + |
