Skip to content

Commit 6abf160

Browse files
authored
Fix default strategy
The default should be `base`, not `class`.
1 parent 241613f commit 6abf160

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const defaultTheme = require('tailwindcss/defaultTheme')
44
const [baseFontSize, { lineHeight: baseLineHeight }] = defaultTheme.fontSize.base
55
const { colors, spacing, borderWidth, borderRadius, outline } = defaultTheme
66

7-
const forms = plugin.withOptions(function (options = { strategy: 'class' }) {
7+
const forms = plugin.withOptions(function (options = { strategy: 'base' }) {
88
return function ({ addBase, theme }) {
99
const strategy = options.strategy
1010

0 commit comments

Comments
 (0)