Skip to content

Commit f5866c1

Browse files
committed
docs: fix typos in readme
1 parent c695e3a commit f5866c1

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,18 @@ Add to `plugins` in your **tailwind.config.js**:
2929

3030
```js
3131
module.exports = {
32-
// ...
32+
// ....
3333
plugins: [
3434
require("tailwindcss-autofill"),
35-
// Other plugins.
35+
// ...other plugins
3636
],
3737
// For TailwindCSS v2 only
3838
variants: {
3939
extend: {
4040
// Enable `autofill` variant for plugins you want
41-
borderColor: ["autofill],
41+
borderColor: ["autofill"],
4242
shadowFill: ["autofill"],
43+
textFill: ["autofill"],
4344
},
4445
},
4546
};
@@ -50,7 +51,7 @@ This plugin is often used with the [tailwindcss-shadow-fill](https://github.com/
5051
Style your components using `autofill:`:
5152

5253
```jsx
53-
<input className="border border-gray-100 autofill:border-gray-900 autofill:shadow-fill-white autofill:text-fill-gray-900" />
54+
<input className="autofill:border-gray-900 autofill:shadow-fill-white autofill:text-fill-gray-900" />
5455
```
5556

5657
## Contributing

0 commit comments

Comments
 (0)