feat(theme): add @tailwindcss/typography plugin
This commit is contained in:
1
theme/static_src/.gitignore
vendored
Normal file
1
theme/static_src/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
node_modules
|
||||||
1777
theme/static_src/package-lock.json
generated
Normal file
1777
theme/static_src/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
27
theme/static_src/package.json
Normal file
27
theme/static_src/package.json
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"name": "theme",
|
||||||
|
"version": "4.4.0",
|
||||||
|
"description": "",
|
||||||
|
"scripts": {
|
||||||
|
"start": "npm run dev",
|
||||||
|
"build": "npm run build:clean && npm run build:tailwind",
|
||||||
|
"build:clean": "rimraf ../static/css/dist",
|
||||||
|
"build:tailwind": "cross-env NODE_ENV=production postcss ./src/styles.css -o ../static/css/dist/styles.css --minify",
|
||||||
|
"dev": "cross-env NODE_ENV=development postcss ./src/styles.css -o ../static/css/dist/styles.css --watch"
|
||||||
|
},
|
||||||
|
"keywords": [],
|
||||||
|
"author": "",
|
||||||
|
"license": "MIT",
|
||||||
|
"devDependencies": {
|
||||||
|
"@tailwindcss/postcss": "^4.1.16",
|
||||||
|
"@tailwindcss/typography": "^0.5.19",
|
||||||
|
"cross-env": "^10.1.0",
|
||||||
|
"daisyui": "^5.3.10",
|
||||||
|
"postcss": "^8.5.6",
|
||||||
|
"postcss-cli": "^11.0.1",
|
||||||
|
"postcss-nested": "^7.0.2",
|
||||||
|
"postcss-simple-vars": "^7.0.1",
|
||||||
|
"rimraf": "^6.0.1",
|
||||||
|
"tailwindcss": "^4.1.16"
|
||||||
|
}
|
||||||
|
}
|
||||||
7
theme/static_src/postcss.config.js
Normal file
7
theme/static_src/postcss.config.js
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
module.exports = {
|
||||||
|
plugins: {
|
||||||
|
"@tailwindcss/postcss": {},
|
||||||
|
"postcss-simple-vars": {},
|
||||||
|
"postcss-nested": {}
|
||||||
|
},
|
||||||
|
}
|
||||||
@@ -1,4 +1,7 @@
|
|||||||
@import "tailwindcss";
|
@import "tailwindcss";
|
||||||
|
@plugin "@tailwindcss/typography";
|
||||||
|
|
||||||
|
@plugin "daisyui";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A catch-all path to Django template files, JavaScript, and Python files
|
* A catch-all path to Django template files, JavaScript, and Python files
|
||||||
|
|||||||
@@ -10,6 +10,13 @@
|
|||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="bg-gray-50 text-black font-serif leading-normal tracking-normal">
|
<body class="bg-gray-50 text-black font-serif leading-normal tracking-normal">
|
||||||
|
|
||||||
|
<div class="toast toast-top toast-end">
|
||||||
|
<div class="alert alert-info">
|
||||||
|
<span>Hello from daisyUi 👋</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="container mx-auto">
|
<div class="container mx-auto">
|
||||||
<section class="flex items-center justify-center h-screen">
|
<section class="flex items-center justify-center h-screen">
|
||||||
<h1 class="text-5xl">Django + Tailwind = ❤️</h1>
|
<h1 class="text-5xl">Django + Tailwind = ❤️</h1>
|
||||||
|
|||||||
Reference in New Issue
Block a user