You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
e22b6578e1 | 3 years ago | |
---|---|---|
css | 3 years ago | |
img | 3 years ago | |
.gitignore | 3 years ago | |
README.md | 3 years ago | |
index.html | 3 years ago | |
input.css | 3 years ago | |
package-lock.json | 3 years ago | |
package.json | 3 years ago | |
tailwind.config.js | 3 years ago |
README.md
Tailwind CSS Youtube Tutorial
Video: https://www.youtube.com/watch?v=dFgzHOX84xQ
Simple landing page tutorial using barebones Tailwind CSS
Tailwind CSS Docs: https://tailwindcss.com/docs/installation
Notes
Since this is a simple project we are just going to look for content in the root
module.exports = {
content: ['./*.html'],
theme: {
extend: {},
},
plugins: [],
}
Same with out .css files
Build
npx tailwindcss -i ./input.css -o ./dist/output.css --watch
or run the package.json script
npm run build
``