Skip to content

Commit 63b5d1a

Browse files
committed
Add tailwind forms plugin
1 parent fdc1609 commit 63b5d1a

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

Diff for: apps/components_guide_web/assets/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"devDependencies": {
1717
"@babel/core": "^7.9.6",
1818
"@babel/preset-env": "^7.9.6",
19+
"@tailwindcss/custom-forms": "^0.2.1",
1920
"@tailwindcss/ui": "^0.5.0",
2021
"autoprefixer": "^9.8.0",
2122
"babel-loader": "^8.1.0",

Diff for: apps/components_guide_web/assets/tailwind.config.js

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
module.exports = {
2-
purge: [
3-
'../**/*.ex',
4-
'../**/*.eex',
5-
'../**/*.html',
6-
],
2+
purge: ["../**/*.ex", "../**/*.eex", "../**/*.html"],
73
future: {
84
removeDeprecatedGapUtilities: true,
95
},
10-
plugins: [require("@tailwindcss/ui")],
6+
plugins: [require("@tailwindcss/custom-forms"), require("@tailwindcss/ui")],
117
theme: {
128
extend: {
139
colors: {

0 commit comments

Comments
 (0)