2023-05-10 01:37:37 +02:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
"./src/**/*.{js,ts,jsx,tsx,mdx}"
|
|
|
|
],
|
|
|
|
theme: {
|
2023-06-04 23:05:36 +02:00
|
|
|
extend: {
|
2024-05-10 19:12:35 +02:00
|
|
|
|
2023-05-14 14:26:27 +02:00
|
|
|
},
|
2023-05-10 01:37:37 +02:00
|
|
|
},
|
2023-05-31 15:20:31 +02:00
|
|
|
plugins: [
|
|
|
|
require("@tailwindcss/forms")
|
|
|
|
],
|
2023-05-10 14:16:31 +02:00
|
|
|
important: true
|
2023-05-10 01:37:37 +02:00
|
|
|
}
|
|
|
|
|