You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
847 B
26 lines
847 B
2 years ago
|
// See the Tailwind configuration guide for advanced usage
|
||
|
// https://tailwindcss.com/docs/configuration
|
||
|
|
||
|
const plugin = require("tailwindcss/plugin")
|
||
|
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
"./js/**/*.js",
|
||
|
"../lib/*_web.ex",
|
||
|
"../lib/*_web/**/*.*ex"
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {
|
||
|
brand: "#FD4F00",
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
plugins: [
|
||
|
require("@tailwindcss/forms"),
|
||
|
plugin(({addVariant}) => addVariant("phx-no-feedback", [".phx-no-feedback&", ".phx-no-feedback &"])),
|
||
|
plugin(({addVariant}) => addVariant("phx-click-loading", [".phx-click-loading&", ".phx-click-loading &"])),
|
||
|
plugin(({addVariant}) => addVariant("phx-submit-loading", [".phx-submit-loading&", ".phx-submit-loading &"])),
|
||
|
plugin(({addVariant}) => addVariant("phx-change-loading", [".phx-change-loading&", ".phx-change-loading &"]))
|
||
|
]
|
||
|
}
|