Skip to content

Commit b4ffad2

Browse files
committed
Using TailwindCSS/forms plugin
1 parent 5208367 commit b4ffad2

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

package-lock.json

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"build": "vite build"
77
},
88
"devDependencies": {
9+
"@tailwindcss/forms": "^0.5.4",
910
"autoprefixer": "^10.4.14",
1011
"axios": "^1.1.2",
1112
"laravel-vite-plugin": "^0.7.5",

tailwind.config.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,14 @@ export default {
77
"./resources/**/*.html"
88
],
99
theme: {
10-
extend: {},
10+
extend: {
11+
screens: {
12+
'xs': '400px'
13+
}
14+
},
1115
},
12-
plugins: [],
16+
plugins: [
17+
require('@tailwindcss/forms'),
18+
],
1319
}
1420

0 commit comments

Comments
 (0)