Skip to content

Commit ac3bfe1

Browse files
committed
0.1.0
1 parent fe344af commit ac3bfe1

File tree

2 files changed

+40
-2
lines changed

2 files changed

+40
-2
lines changed

README.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
11
# tailwindcss-question-mark
22

3-
A plugin that provides a helpful `?` dev time utility.
3+
A plugin that provides a helpful `?` dev time utility.
4+
5+
**Demo**: https://play.tailwindcss.com/yH1AlcdPD7
6+
7+
![question-mark](https://user-images.githubusercontent.com/2526/100670075-44d5d300-3356-11eb-9d82-c0e41942f037.gif)
8+
9+
10+
## Installation
11+
12+
Install the plugin from npm:
13+
14+
```sh
15+
# Using npm
16+
npm install tailwindcss-question-mark
17+
18+
# Using Yarn
19+
yarn add tailwindcss-question-mark
20+
```
21+
22+
Then add the plugin to your `tailwind.config.js` file:
23+
24+
```js
25+
// tailwind.config.js
26+
module.exports = {
27+
theme: {
28+
// ...
29+
},
30+
plugins: [
31+
require('tailwindcss-question-mark'),
32+
// ...
33+
],
34+
}
35+
```
36+
37+
## Usage
38+
39+
Simply add the `?` utility class to any element that you'd like to highlight.
40+
41+
**Demo**: https://play.tailwindcss.com/yH1AlcdPD7

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tailwindcss-question-mark",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "A plugin that provides a helpful `?` dev time utilit",
55
"main": "src/index.js",
66
"license": "MIT",

0 commit comments

Comments
 (0)