Skip to content

Commit 7e09f85

Browse files
committed
Merge branch 'release/v1.03'
2 parents 61bd344 + 4c97a1d commit 7e09f85

File tree

2 files changed

+21
-12
lines changed

2 files changed

+21
-12
lines changed

composer.json

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,29 @@
11
{
22
"name": "chasegiunta/craft-vue-tailwind",
3-
"description": "Craft CMS",
4-
"version": "1.0",
3+
"description": "Fork of template that integrates the Tailwind CSS utility framework & removes unused CSS with Purgecss.",
4+
"version": "1.03",
55
"minimum-stability": "RC",
66
"keywords": [
77
"craft",
88
"cms",
99
"craftcms",
10-
"project"
10+
"project",
11+
"vue",
12+
"vue.js",
13+
"tailwind",
14+
"tailwindcss"
1115
],
1216
"license": "MIT",
1317
"homepage": "https://craftcms.com/",
1418
"type": "project",
1519
"support": {
16-
"email": "[email protected]",
17-
"issues": "https://github.com/craftcms/cms/issues",
18-
"forum": "https://craftcms.stackexchange.com/",
19-
"source": "https://github.com/craftcms/cms",
20-
"docs": "https://craftcms.com/docs",
21-
"rss": "https://craftcms.com/changelog.rss"
20+
"email": "[email protected]",
21+
"issues": "https://github.com/chasegiunta/craft-vue-tailwind/issues",
22+
"source": "https://github.com/chasegiunta/craft-vue-tailwind",
23+
"docs": "https://github.com/chasegiunta/craft-vue-tailwind"
2224
},
2325
"require": {
24-
"craftcms/cms": "^3.0.0-RC1",
26+
"craftcms/cms": "^3.0.0",
2527
"vlucas/phpdotenv": "^2.4.0",
2628
"clubstudioltd/craft-asset-rev": "v6.0.0"
2729
},

src/app.css

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
@tailwind preflight;
22
@tailwind components;
3-
@tailwind utilities;
3+
4+
/**
5+
* Here you would add any of your custom classes; stuff that you'd
6+
* want loaded *before* the utilities so that the utilities could still
7+
* override them.
8+
*/
49

510
body {
611
font-family: 'Avenir', Helvetica, Arial, sans-serif;
@@ -9,4 +14,6 @@ body {
914
text-align: center;
1015
color: #2c3e50;
1116
margin-top: 60px;
12-
}
17+
}
18+
19+
@tailwind utilities;

0 commit comments

Comments
 (0)