Skip to content

fix: pin tailwind to v3 #69

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: v0.6
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Desktop/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Development
{% if styling == "Tailwind" %}
1. Install npm: https://docs.npmjs.com/downloading-and-installing-node-js-and-npm
2. Install the tailwind css cli: https://tailwindcss.com/docs/installation
2. Install the tailwind css cli: https://v3.tailwindcss.com/docs/installation
3. Run the following command in the root of the project to start the tailwind CSS compiler:

```bash
npx tailwindcss -i ./input.css -o ./assets/tailwind.css --watch
npx tailwindcss@v3 -i ./input.css -o ./assets/tailwind.css --watch
```
{% endif %}
Run the following command in the root of the project to start the Dioxus dev server:
Expand Down
4 changes: 2 additions & 2 deletions Fullstack/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{% if styling == "Tailwind" %}
1. Install npm: https://docs.npmjs.com/downloading-and-installing-node-js-and-npm
2. Install the tailwind css cli: https://tailwindcss.com/docs/installation
2. Install the tailwind css cli: https://v3.tailwindcss.com/docs/installation
3. Run the following command in the root of the project to start the tailwind CSS compiler:

```bash
npx tailwindcss -i ./input.css -o ./assets/tailwind.css --watch
npx tailwindcss@v3 -i ./input.css -o ./assets/tailwind.css --watch
```
{% endif %}

Expand Down
4 changes: 2 additions & 2 deletions Web/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Development
{% if styling == "Tailwind" %}
1. Install npm: https://docs.npmjs.com/downloading-and-installing-node-js-and-npm
2. Install the tailwind css cli: https://tailwindcss.com/docs/installation
2. Install the tailwind css cli: https://v3.tailwindcss.com/docs/installation
3. Run the following command in the root of the project to start the tailwind CSS compiler:

```bash
npx tailwindcss -i ./input.css -o ./assets/tailwind.css --watch
npx tailwindcss@v3 -i ./input.css -o ./assets/tailwind.css --watch
```
{% endif %}
Run the following command in the root of the project to start the Dioxus dev server:
Expand Down