File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ @tailwind base;
2+ @tailwind components;
3+ @tailwind utilities;
Original file line number Diff line number Diff line change 11{
22 "name" : " docs-theme" ,
33 "version" : " 1.0.0" ,
4- "description" : " " ,
5- "license" : " ISC" ,
6- "author" : " " ,
7- "type" : " commonjs" ,
8- "main" : " tailwind.config.js" ,
94 "scripts" : {
10- "test" : " echo \" Error: no test specified\" && exit 1"
5+ "build" : " tailwindcss -i src/input.css -o ../public/css/docs.css --minify"
6+ },
7+ "devDependencies" : {
8+ "tailwindcss" : " ^3.4.3" ,
9+ "@tailwindcss/typography" : " ^0.5.13"
1110 }
12- }
11+ }
Original file line number Diff line number Diff line change 11module . exports = {
2- content : [
3- '../public/**/*.html' ,
4- '../templates/**/*.twig'
5- ] ,
6- theme : {
7- extend : {
8- colors : {
9- 'wp-blue' : '#21759b' ,
10- 'wp-gray' : '#f1f1f1'
11- }
2+ content : [
3+ "../public/**/*.html" ,
4+ "../templates/**/*.twig"
5+ ] ,
6+ theme : {
7+ extend : {
8+ colors : {
9+ 'wp-blue' : '#21759b' ,
10+ 'wp-gray' : '#f1f1f1'
1211 }
1312 }
14- }
13+ } ,
14+ plugins : [
15+ require ( '@tailwindcss/typography' )
16+ ]
17+ }
You can’t perform that action at this time.
0 commit comments